Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for covers (0.26 sec)

  1. src/html/template/escape_test.go

    	if err == nil {
    		t.Error("expected error")
    	} else if !strings.Contains(err.Error(), "incomplete") {
    		t.Errorf("expected error about incomplete template; got %s", err)
    	}
    }
    
    // This covers issue #20842.
    func TestIdempotentExecute(t *testing.T) {
    	tmpl := Must(New("").
    		Parse(`{{define "main"}}<body>{{template "hello"}}</body>{{end}}`))
    	Must(tmpl.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

         * * Making sure we no longer are registered as pending interest on nodes pointed by constraints
         */
        private void cleanupConstraints() {
            // This part covers constraint that were taken into account between a selection being deferred and this node being scheduled for traversal
            if (upcomingNoLongerPendingConstraints != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			rvMatch:        metav1.ResourceVersionMatchNotOlderThan,
    			expectedOut:    []example.Pod{*preset[3]},
    			expectContinue: true,
    		},
    		{
    			name:   "test List with filter returning only one item, covers the entire list",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "barfoo"),
    				Label: labels.Everything(),
    				Limit: 2,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            outputContains("service: value is 11")
            outputContains("service: closed with value 11")
        }
    
        @Requires(IntegTestPreconditions.NotConfigCached) // already covers CC behavior
        def "service used at configuration is discarded before execution time when used with configuration cache"() {
            serviceImplementation()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	for i := range parameters.Filters {
    		parameters.Filters[i].NamedResources.Selector = `attributes.bool["no-such-attribute"]`
    	}
    	return parameters
    }
    
    // result defines the expected outcome of some operation. It covers
    // operation's status and the state of the world (= objects).
    type result struct {
    	status *framework.Status
    	// changes contains a mapping of name to an update function for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	isRelease = strings.HasPrefix(goversion, "release.") || strings.HasPrefix(goversion, "go")
    }
    
    // compilerEnv returns a map from "goos/goarch" to the
    // compiler setting to use for that platform.
    // The entry for key "" covers any goos/goarch not explicitly set in the map.
    // For example, compilerEnv("CC", "gcc") returns the C compiler settings
    // read from $CC, defaulting to gcc.
    //
    // The result is a map because additional environment variables
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    				return out, false, apierrors.NewInternalError(err)
    			}
    			resourceVersion := accessor.GetResourceVersion()
    			preconditions.ResourceVersion = &resourceVersion
    		}
    	}
    
    	// !deleteImmediately covers all cases where err != nil. We keep both to be future-proof.
    	if !deleteImmediately || err != nil {
    		return out, false, err
    	}
    
    	// Going further in this function is not useful when we are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    		dstLocalOnlyArgs := append(args, "-m", "addrtype", "--dst-type", "LOCAL")
    		// Allow traffic bound for external IPs that happen to be recognized as local IPs to stay local.
    		// This covers cases like GCE load-balancers which get added to the local routing table.
    		proxier.natRules.Write(dstLocalOnlyArgs, "-j", "ACCEPT")
    	}
    
    	if !proxier.ipsetList[kubeExternalIPSet].isEmpty() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		}
    		testEnv.validatePodCache(t, testNode.Name, pod, podVolumes, expectedBindings, nil)
    	}
    }
    
    // TestCapacity covers different scenarios involving CSIStorageCapacity objects.
    // Scenarios without those are covered by TestFindPodVolumesWithProvisioning.
    func TestCapacity(t *testing.T) {
    	type scenarioType struct {
    		// Inputs
    		pvcs       []*v1.PersistentVolumeClaim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	// covered by the first level arena map.
    	//
    	// This number should be small, since the first level arena
    	// map requires PtrSize*(1<<arenaL1Bits) of space in the
    	// binary's BSS. It can be zero, in which case the first level
    	// index is effectively unused. There is a performance benefit
    	// to this, since the generated code can be more efficient,
    	// but comes at the cost of having a large L2 mapping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top