Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for repeated (0.17 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    \\--- org:top:1.0 (*)
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    """
        }
    
        def "renders multiple rejected modules"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // source code analysis tools exactly how test binaries are constructed.
    // The reported import path for a test binary is the import path of
    // the package followed by a ".test" suffix, as in "math/rand.test".
    // When building a test, it is sometimes necessary to rebuild certain
    // dependencies specially for that test (most commonly the tested
    // package itself). The reported import path of a package recompiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// result into the cache. That's probably a net win:
    	// less cache space wasted on large binaries we are not likely to
    	// need again. (On the other hand it does make repeated go test slower.)
    	// It also makes repeated go run slower, which is a win in itself:
    	// we don't want people to treat go run like a scripting environment.
    	if err := b.updateBuildID(a, a.Target, !a.Package.Internal.OmitDebug); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	admitHandlers lifecycle.PodAdmitHandlers
    
    	// softAdmithandlers are applied to the pod after it is admitted by the Kubelet, but before it is
    	// run. A pod rejected by a softAdmitHandler will be left in a Pending state indefinitely. If a
    	// rejected pod should not be recreated, or the scheduler is not aware of the rejection rule, the
    	// admission rule should be applied by a softAdmitHandler.
    	softAdmitHandlers lifecycle.PodAdmitHandlers
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework_test.go

    						{Name: duplicatePluginName, Weight: 1},
    					},
    				},
    			},
    			pluginCfg: []config.PluginConfig{
    				{Name: duplicatePluginName},
    				{Name: duplicatePluginName},
    			},
    			wantErr: "repeated config for plugin",
    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    			wantIndexesToAdd: []int{1, 3},
    		},
    		"subset of indexes can be recreated now": {
    			indexesToAdd: []int{1, 3},
    			podsWithDelayedDeletionPerIndex: map[int]*v1.Pod{
    				1: buildPod().indexFailureCount("0").index("1").customDeletionTimestamp(now).Pod,
    			},
    			wantIndexesToAdd: []int{3},
    		},
    		"subset of indexes can be recreated now as the pods failed long time ago": {
    			indexesToAdd: []int{1, 3},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        Future<Integer> transformedFuture = transform(immediateFuture, adder, directExecutor());
    
        // The composed future also yields 6.
        assertEquals(6, getDone(transformedFuture).intValue());
    
        // Repeated calls yield the same value even though the function's behavior
        // changes
        holder.value = 3;
        assertEquals(6, getDone(transformedFuture).intValue());
        assertEquals(7, adder.apply(4).intValue());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        Future<Integer> transformedFuture = transform(immediateFuture, adder, directExecutor());
    
        // The composed future also yields 6.
        assertEquals(6, getDone(transformedFuture).intValue());
    
        // Repeated calls yield the same value even though the function's behavior
        // changes
        holder.value = 3;
        assertEquals(6, getDone(transformedFuture).intValue());
        assertEquals(7, adder.apply(4).intValue());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      switch (value.value_case()) {
        case AttrValue::kFunc: {
          // TODO(b/156546237): Unify kFunc/NameAttrList attribute representation.
          // Currently kFunc/NameAttrList attributes in a kList/repeated AttrValue
          // will not use this representation. This also doesn't handle empty
          // function values like ConvertFunctionCallName method.
          NamedAttrList attrs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. src/net/http/server.go

    //
    // # Request sanitizing
    //
    // ServeMux also takes care of sanitizing the URL request path and the Host
    // header, stripping the port number and redirecting any request containing . or
    // .. segments or repeated slashes to an equivalent, cleaner URL.
    //
    // # Compatibility
    //
    // The pattern syntax and matching behavior of ServeMux changed significantly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top