Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 364 for JSpecify (0.3 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        /**
         * <p>Adds the given projects to the build. Each path in the supplied list is treated as the path of a project to
         * add to the build. Note that these path are not file paths, but instead specify the location of the new project in
         * the project hierarchy. As such, the supplied paths must use the ':' character as separator (and NOT '/').</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

            """
    
            when:
            runAndFail 'sample, --hello', 'test'
    
            then:
            failureCauseContains('Cannot specify duplicate annotation on the same member : org.gradle.api.tasks.options.Option')
        }
    
        @ToBeFixedForIsolatedProjects(because = "Configuring projects from root")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. build/common.sh

    # already been built.
    #
    # Arguments are in the form of
    #  <container name> <extra docker args> -- <command>
    function kube::build::run_build_command_ex() {
      [[ $# != 0 ]] || { echo "Invalid input - please specify a container name." >&2; return 4; }
      local container_name="${1}"
      shift
    
      local -a docker_run_opts=(
        "--name=${container_name}"
        "--user=$(id -u):$(id -g)"
        "--hostname=${HOSTNAME}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	// the security of kubeadm since other nodes can impersonate the control-plane.
    	UnsafeSkipCAVerification bool
    }
    
    // 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
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    <2> Use an appropriate scope to run your actions. As the name suggests, actions in the `always` scope are executed every time the build runs.
    <3> Specify the class that implements the action.
    <4> Use the spec argument to configure the action parameters.
    <5> A lifecycle event provider can be mapped into something else while preserving the action order.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top