Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 222 for findMin (0.16 sec)

  1. src/cmd/go/testdata/script/mod_get_update_unrelated_sum.txt

    # 'go get' should fail when fetching the zip.
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    env GOPROXY=off
    ! go get example.com/upgrade@v0.0.2
    stderr '^go: upgraded rsc.io/quote v1.0.0 => v1.5.2: error finding sum for rsc.io/quote@v1.5.2: module lookup disabled by GOPROXY=off$'
    
    -- go.mod.orig --
    module m
    
    go 1.16
    
    require (
    	example.com/upgrade v0.0.1
    	rsc.io/quote v1.0.0
    )
    
    replace (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. src/os/user/user_test.go

    			t.Skipf("skipping: %v", err)
    		}
    	}
    
    	// TODO: Lookup() has a fast path that calls Current() and returns if the
    	// usernames match, so this test does not exercise very much. It would be
    	// good to try and test finding a different user than the current user.
    	got, err := Lookup(want.Username)
    	if err != nil {
    		t.Fatalf("Lookup: %v", err)
    	}
    	compare(t, want, got)
    }
    
    func TestLookupId(t *testing.T) {
    	checkUser(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 15:59:43 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. docs/de/docs/alternatives.md

        Diese beiden wurden ausgewählt, weil sie ziemlich beliebt und stabil sind, aber bei einer schnellen Suche könnten Sie Dutzende alternativer Benutzeroberflächen für OpenAPI finden (welche Sie mit **FastAPI** verwenden können).
    
    ### Flask REST Frameworks
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/net.go

    	s.ztunnelServer.Close()
    }
    
    func (s *NetServer) rescanPod(pod *corev1.Pod) error {
    	// this can happen if the pod was dynamically added to the mesh after it was created.
    	// in that case, try finding the netns using procfs.
    	filter := map[types.UID]*corev1.Pod{
    		pod.UID: pod,
    	}
    	return s.scanProcForPodsAndCache(filter)
    }
    
    func (s *NetServer) getOrOpenNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

                    default:
                        throw new RuntimeException(String.format("Cannot handle resource URI %s", resource));
                }
            } catch (Exception e) {
                throw new RuntimeException("Error finding resource: " + name, e);
            }
        }
    
        @Nonnull
        private TestFile fromFile(URL resource) throws URISyntaxException {
            return new TestFile(resource.toURI());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            def toolchain = queryService.findMatchingToolchain(filter)
    
            then:
            toolchain.vendor.knownVendor == JvmVendor.KnownJvmVendor.BELLSOFT
        }
    
        def "ignores invalid toolchains when finding a matching one"() {
            given:
            def queryService = createQueryServiceWithInstallations(["8.0", "8.0.242.hs-adpt", "8.0.broken"])
    
            when:
            def filter = createSpec(JavaLanguageVersion.of(8))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/runtime/mfinal_test.go

    			v := new(int)
    			runtime.SetFinalizer(v, fin)
    		}
    	})
    }
    
    // One chunk must be exactly one sizeclass in size.
    // It should be a sizeclass not used much by others, so we
    // have a greater chance of finding adjacent ones.
    // size class 19: 320 byte objects, 25 per page, 1 page alloc at a time
    const objsize = 320
    
    type objtype [objsize]byte
    
    func adjChunks() (*objtype, *objtype) {
    	var s []*objtype
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/types.go

    	// at least "minFeasibleNodesToFind" feasible nodes no matter what the value of this flag is.
    	// Example: if the cluster size is 500 nodes and the value of this flag is 30,
    	// then scheduler stops finding further feasible nodes once it finds 150 feasible ones.
    	// When the value is 0, default percentage (5%--50% based on the size of the cluster) of the
    	// nodes will be scored. It is overridden by profile level PercentageOfNodesToScore.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/visit.go

    //			visit(x)
    //			return ir.DoChildren(x, do)
    //		}
    //		do(n)
    //	}
    //
    // The Any function illustrates a different simplification of the pattern,
    // visiting each node and then its children, recursively, until finding
    // a node x for which cond(x) returns true, at which point the entire
    // traversal stops and returns true.
    //
    //	func Any(n ir.Node, cond(ir.Node) bool) bool {
    //		if n == nil {
    //			return false
    //		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

            1 * connection.markSuspect()
            1 * connection.dispatch({ it instanceof CloseInput })
            1 * connection.stop()
            0 * connection._
        }
    
        def "does not loop forever finding usable daemons"() {
            given:
            connector.connect(compatibilitySpec) >> connection
            connector.startDaemon(compatibilitySpec) >> connection
            connection.daemon >> Stub(DaemonConnectDetails)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top