Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for targeted (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "integer"
            },
            "readyReplicas": {
              "description": "Total number of ready pods targeted by this deployment.",
              "format": "int32",
              "type": "integer"
            },
            "replicas": {
              "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
              "format": "int32",
              "type": "integer"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

            type: string
          - name: hosts
            type: string
    
      - name: "ImageAutoWithoutInjectionWarning"
        code: IST0146
        level: Warning
        description: "Deployments with `image: auto` should be targeted for injection."
        template: "%s %s contains `image: auto` but does not match any Istio injection webhook selectors."
        args:
          - name: resourceType
            type: string
          - name: resourceName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            // On windows we currently target i386 by default, even on amd64
            if (OperatingSystem.current().windows || Native.get(SystemInfo).architecture == SystemInfo.Architecture.i386) {
                return [name: "x86", altName: "i386"]
            }
            return [name: "x86-64", altName: "amd64"]
        }
    
        @ToBeFixedForConfigurationCache
        def "build binary for a default target platform"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    			},
    		},
    		// the external type is registered in multiple groups, versions, and kinds, and can be targeted to all of them (1/3): different kind
    		{
    			scheme: GetTestScheme(),
    			in:     &runtimetesting.ExternalTestType1{A: "test"},
    			gv:     testGroupVersioner{ok: true, target: schema.GroupVersionKind{Kind: "TestType3", Version: "v1"}},
    			same:   true,
    			out: &runtimetesting.ExternalTestType1{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

        /**
         * Returns the full path to the Unix script. The target directory is represented by the output directory, the file name is the application name without a file extension.
         */
        @Internal
        public File getUnixScript() {
            return new File(getOutputDir(), getApplicationName());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/list.go

    		// where "go mod tidy" and "go list -m -u all" fight over whether the go.sum
    		// should be considered up-to-date. The fix for now is to always treat the
    		// go.sum as up-to-date during list -m -u. Probably the right fix is more targeted,
    		// but in general list -u is looking up other checksums in the checksum database
    		// that won't be necessary later, so it makes sense not to write the go.sum back out.
    		if !ExplicitWriteGoMod && mode&ListU == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. src/runtime/cpuprof.go

    	// by the fact that only one SIGPROF can be handled by the
    	// process at a time. If not, this lock will serialize those too.
    	// The use of timer_create(2) on Linux to request process-targeted
    	// signals may have changed this.)
    	for !prof.signalLock.CompareAndSwap(0, 1) {
    		// TODO: Is it safe to osyield here? https://go.dev/issue/52672
    		osyield()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook.go

    // and returns a TokenReviewInterface that uses that client. Note that the client submits TokenReview
    // requests to the exact path specified in the kubeconfig file, so arbitrary non-API servers can be targeted.
    func tokenReviewInterfaceFromConfig(config *rest.Config, version string, retryBackoff wait.Backoff) (tokenReviewer, error) {
    	localScheme := runtime.NewScheme()
    	if err := scheme.AddToScheme(localScheme); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    The JVM running the Tooling API client and the one running the daemon can be different.
    At the same time, classes that are sent to the build via custom build actions need to be targeted to the lowest supported Java version.
    The JVM versions supported by Gradle is version-specific.
    The upper bound is defined in the <<compatibility.adoc#compatibility,compatibility matrix>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Total number of non-terminated pods targeted by this deployment (their labels match the selector).
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,2,opt,name=replicas"`
    
    	// Total number of non-terminated pods targeted by this deployment that have the desired template spec.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top