Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 364 for JSpecify (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    [[sec:using_an_init_script]]
    == Invoking an init script
    
    There are several ways to invoke an init script (in order of priority):
    
    1. *Specify a file on the command line* with the option `-I` or `--init-script` followed by the path to the script.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. .github/workflows/codeql-analysis.yml

        # Initializes the CodeQL tools for scanning.
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v3
          with:
            languages: ${{ matrix.language }}
            tools: latest
            # If you wish to specify custom queries, you can do so here or in a config file.
            # By default, queries listed here will override any specified in a config file.
            # Prefix the list here with "+" to use these queries and those in the config file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/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: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/export_utils.h

        mlir::Operation* inst, llvm::StringRef name);
    
    // Converts MLIR attributes with values to their tensorflow equivalent.
    // "name" and "device" attributes are ignored by default. Use attrs_to_ignore to
    // specify any other attributes that should be ignored.
    Status ConvertAttributes(
        llvm::ArrayRef<mlir::NamedAttribute> attrs,
        const absl::flat_hash_set<absl::string_view>& attrs_to_ignore,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. docs/logging/README.md

    client_tls_cert  (path)      path to client certificate for mTLS auth
    client_tls_key   (path)      path to client key for mTLS auth
    version          (string)    specify the version of the Kafka cluster
    comment          (sentence)  optionally add a comment to this setting
    ```
    
    Configure MinIO to send audit logs to locally running Kafka brokers
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. pkg/config/constants/constants.go

    	// Anything else indicates it is not.
    	AmbientRedirectionEnabled = "enabled"
    
    	// AmbientUseWaypointLabelLabel is the label used to specify which waypoint should be used for a given pod, service, etc...
    	AmbientUseWaypointLabel = "istio.io/use-waypoint"
    	// AmbientWaypointForTrafficTypeLabel is the label used to specify which traffic is allowed through the Waypoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

    public annotation class KaAllowAnalysisFromWriteAction
    
    /**
     * The private [KaAllowProhibitedAnalyzeFromWriteAction] opt-in forces users of [allowAnalysisFromWriteAction] to specify an opt-in not only
     * in the code (via [KaAllowAnalysisFromWriteAction]), but also from the command line:
     *
     * ```
     * -opt-in=org.jetbrains.kotlin.analysis.api.permissions.KaAllowProhibitedAnalyzeFromWriteAction
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

     * control the lifecycle of the mojo itself, and to inject other beans.
     * </p>
     * <p>
     * The mojo class can also be injected with an {@link Execute} annotation to specify a
     * forked lifecycle.
     * </p>
     * <p>
     * The {@link Parameter} annotation can be added on fields to inject data
     * from the plugin configuration or from other components.
     * </p>
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. pkg/quota/v1/evaluator/core/pods_test.go

    							Limits:   api.ResourceList{api.ResourceCPU: resource.MustParse("2m")},
    						},
    					}},
    				},
    			},
    			required: []corev1.ResourceName{corev1.ResourceMemory},
    			err:      `must specify memory for: dummy`,
    		},
    		"multiple init container resource missing": {
    			pod: &api.Pod{
    				Spec: api.PodSpec{
    					InitContainers: []api.Container{{
    						Name: "foo",
    						Resources: api.ResourceRequirements{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/godefs.go

    	fmt.Fprintf(&buf, "// %s %s\n", filepath.Base(args[0]), strings.Join(args[1:], " "))
    	fmt.Fprintf(&buf, "\n")
    
    	override := make(map[string]string)
    
    	// Allow source file to specify override mappings.
    	// For example, the socket data structures refer
    	// to in_addr and in_addr6 structs but we want to be
    	// able to treat them as byte arrays, so the godefs
    	// inputs in package syscall say
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top