Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 170 for applyTo (0.21 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    					RouteMatched:   "route1",
    					ClusterMatched: "outbound|80||concrete.default.svc.cluster.local",
    				},
    			},
    			{
    				// Host is opaque, so no expansion
    				Name: "HTTP virtual service does not apply to alias without exact match",
    				Call: simulation.Call{Address: "1.2.3.4", Port: 80, Protocol: simulation.HTTP, HostHeader: "alias.default", Path: "/one"},
    				Result: simulation.Result{
    					RouteMatched:   "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 128 characters long, and only contain printable characters,
      // as defined by https://golang.org/pkg/unicode/#IsPrint. This
      // field is required for apply requests
      // (application/apply-patch) but optional for non-apply patch
      // types (JsonPatch, MergePatch, StrategicMergePatch).
      // +optional
      optional string fieldManager = 3;
    
      // fieldValidation instructs the server on how to handle
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 128 characters long, and only contain printable characters,
      // as defined by https://golang.org/pkg/unicode/#IsPrint. This
      // field is required for apply requests
      // (application/apply-patch) but optional for non-apply patch
      // types (JsonPatch, MergePatch, StrategicMergePatch).
      // +optional
      optional string fieldManager = 3;
    
      // fieldValidation instructs the server on how to handle
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

       * Multimap<String, Integer> multimap =
       *     ImmutableSetMultimap.of("a", 2, "b", -3, "b", -3, "a", 4, "c", 6);
       * Function<Integer, String> square = new Function<Integer, String>() {
       *     public String apply(Integer in) {
       *       return Integer.toString(in * in);
       *     }
       * };
       * Multimap<String, String> transformed =
       *     Multimaps.transformValues(multimap, square);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multimaps.java

       * Multimap<String, Integer> multimap =
       *     ImmutableSetMultimap.of("a", 2, "b", -3, "b", -3, "a", 4, "c", 6);
       * Function<Integer, String> square = new Function<Integer, String>() {
       *     public String apply(Integer in) {
       *       return Integer.toString(in * in);
       *     }
       * };
       * Multimap<String, String> transformed =
       *     Multimaps.transformValues(multimap, square);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                tasks.all {
                    System.getProperty("PROP")
                    gradle.buildFinished { }
                }
            """
            buildFile << """
                apply from: 'script.gradle'
                task ok
            """
    
            when:
            configurationCacheFails("ok", "-DPROP=12")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

            ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" apply -f "${KUBE_ROOT}/cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml"
            ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" apply -f "${KUBE_ROOT}/cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	// group of m zero bits.
    	switch m {
    	case 1:
    		return x
    	case 2:
    		x = apply(x, 0x5555555555555555)
    	case 4:
    		x = apply(x, 0x7777777777777777)
    	case 8:
    		x = apply(x, 0x7f7f7f7f7f7f7f7f)
    	case 16:
    		x = apply(x, 0x7fff7fff7fff7fff)
    	case 32:
    		x = apply(x, 0x7fffffff7fffffff)
    	case 64: // == maxPagesPerPhysPage
    		x = apply(x, 0x7fffffffffffffff)
    	default:
    		throw("bad m value")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    In this case, we assign the copy configuration to its own variable and apply it to whatever `from()` specification we want.
    This doesn't just work for inclusions but also exclusions, file renaming, and file content filtering.
    
    [[sub:using_child_copy_specifications]]
    ==== 2. Using child specifications
    If you only use a single copy spec, the file filtering and renaming will apply to _all_ files copied.
    Sometimes, this is what you want, but not always.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    See also: go build, go vet.
    `,
    }
    
    var HelpTestflag = &base.Command{
    	UsageLine: "testflag",
    	Short:     "testing flags",
    	Long: `
    The 'go test' command takes both flags that apply to 'go test' itself
    and flags that apply to the resulting test binary.
    
    Several of the flags control profiling and write an execution profile
    suitable for "go tool pprof"; run "go tool pprof -h" for more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top