Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 347 for JSpecify (0.14 sec)

  1. pkg/kubelet/userns/userns_manager.go

    	if pod == nil || pod.Spec.HostUsers == nil {
    		// if the feature is enabled, specify to use the node mode...
    		if featureEnabled {
    			return &runtimeapi.UserNamespace{
    				Mode: runtimeapi.NamespaceMode_NODE,
    			}, nil
    		}
    		// ...otherwise don't even specify it
    		return nil, nil
    	}
    	// pod.Spec.HostUsers is set to true/false
    	if !featureEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/gateway-api-crd.yaml

              GRPCRoute provides a way to route gRPC requests. This includes the capability
              to match requests by hostname, gRPC service, gRPC method, or HTTP/2 header.
              Filters can be used to specify additional processing steps. Backends specify
              where matching requests will be routed.
    
    
              GRPCRoute falls under extended support within the Gateway API. Within the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/types.go

    	// (whether or not they contain an ingress section) are assumed to affect ingress.
    	// If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ].
    	// Likewise, if you want to write a policy that specifies that no egress is allowed,
    	// you must specify a policyTypes value that include "Egress" (since such a policy would not include
    	// an egress section and would otherwise default to just [ "Ingress" ]).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    It also registers two tasks: `greet`, which creates the file with the greeting, and `sayGreeting`, which prints the file's contents.
    The `greetingFile` property is used to specify the file path for the greeting:
    
    ====
    include::sample[dir="snippets/tasks/customTaskWithFileProperty/kotlin",files="build.gradle.kts[tags=all]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         * merely enables the user to omit the <code>&lt;phase&gt;</code> element from the surrounding
         * <code>&lt;execution&gt;</code> element.
         */
        private String phase;
    
        /** Specify the version when the Mojo was added to the API. Similar to Javadoc since. */
        private String since;
    
        /** Reference the invocation phase of the Mojo. */
        private String executePhase;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

                    } else if (unknown) {
                        // More than one filtered value, and we don't know how to handle at least one of them.
                        // TODO: add a plugin mechanism for allowing plugin to specify their selection algorithm.
                        return Optional.empty();
                    }
                }
            }
            /*
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         *
         * @param buildFile The build file. May be null.
         *
         * @deprecated Setting custom build file to select the default project has been deprecated.
         * Please use {@link #setProjectDir(File)} to specify the directory of the default project instead.
         * This method will be removed in Gradle 9.0.
         */
        @Deprecated
        public void setBuildFile(@Nullable File buildFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. internal/logger/logrotate.go

    	// may fall on the same timestamp.
    	// Eg.
    	// 	2020-03-28_15-00-945-<random-hash>.log
    	// When FileNameFunc is not specified, DefaultFilenameFunc will be used.
    	FileNameFunc func() string
    
    	// Compress specify if you want the logs to be compressed after rotation.
    	Compress bool
    }
    
    // Writer is a concurrency-safe writer with file rotation.
    type Writer struct {
    	// opts are the configuration options for this Writer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

            }
    
            @Override
            public ImmutableAttributes getAttributes() {
                ImmutableAttributes baseAttributes = resolutionAccess.getAttributes();
    
                // The user did not specify any attributes. Use the original request attributes.
                if (viewAttributes.isEmpty()) {
                    return baseAttributes;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	UnsafeSkipCAVerification bool `json:"unsafeSkipCAVerification,omitempty"`
    }
    
    // FileDiscovery is used to specify a file or URL to a kubeconfig file from which to load cluster information
    type FileDiscovery struct {
    	// KubeConfigPath is used to specify the actual file path or URL to the kubeconfig file from which to load cluster information
    	KubeConfigPath string `json:"kubeConfigPath"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top