Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 241 for Option (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            buildFile << """
                abstract class MyTask extends DefaultTask {
                    @TaskAction
                    def action() {
                        println($code)
                    }
                }
    
                class MyAction implements Action<Task> {
                    void execute(Task task) {
                        task.$code
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wpragmas\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Waddress-of-packed-member\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunknown-warning-option\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunaligned-access\"\n")
    
    	fmt.Fprintf(fgcc, "extern void crosscall2(void (*fn)(void *), void *, int, size_t);\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    // --------------------------------------------------------------------------
    // TF_SessionOptions holds options that can be passed during session creation.
    typedef struct TF_SessionOptions TF_SessionOptions;
    
    // Return a new options object.
    TF_CAPI_EXPORT extern TF_SessionOptions* TF_NewSessionOptions(void);
    
    // Set the target in TF_SessionOptions.options.
    // target can be empty, a single entry, or a comma separated list of entries.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    				tr := action.(clitesting.CreateAction).GetObject().(*authenticationv1.TokenRequest)
    				scheme.Default(tr)
    				if len(tr.Spec.Audiences) == 0 {
    					tr.Spec.Audiences = []string{"api"}
    				}
    				tr.Status.Token = fmt.Sprintf("%v:%v:%d:%v", action.GetNamespace(), testAccount, *tr.Spec.ExpirationSeconds, tr.Spec.Audiences)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

        #
        # storage metrics
        # ---------------
        # publish storage pipeline metrics in '/api/v1/storage'. The metrics are
        # exported only if the 'http_server' option is enabled.
        #
        # storage.metrics on
    
        # storage.path
        # ------------
        # absolute file system path to store filesystem data buffers (chunks).
        #
        # storage.path /tmp/storage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    	return nil
    }
    
    func runClientTestForVersion(t *testing.T, template *clientTest, version, option string) {
    	// Make a deep copy of the template before going parallel.
    	test := *template
    	if template.config != nil {
    		test.config = template.config.Clone()
    	}
    	test.name = version + "-" + test.name
    	test.args = append([]string{option}, test.args...)
    
    	runTestAndUpdateIfNeeded(t, version, test.run, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    					// to hold it.  The first candidate is the value that will replace a (aa),
    					// if it shares the same block and line and is eligible.
    					// The second option is v, which has a as an input.  Because aa is earlier in
    					// the data flow, it is the better choice.
    					if a.Pos.IsStmt() == src.PosIsStmt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            file('dest').assertHasDescendants('emptyDir', 'dummy', 'more', 'yet/another/veryEmptyDir')
            file('dest/more').assertIsEmptyDir()
        }
    
        def "empty dirs are not copied if corresponding option is set to false"() {
            given:
            file('files/emptyDir').createDir()
            file('files/yet/another/veryEmptyDir').createDir()
            file('files/one.txt').createFile()
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. src/testing/testing.go

    // The value is set to "1" by a -X option to cmd/link. We assume that
    // because this is possible, the compiler will not optimize testBinary
    // into a constant on the basis that it is an unexported package-scope
    // variable that is never changed. If the compiler ever starts implementing
    // such an optimization, we will need some technique to mark this variable
    // as "changed by a cmd/link -X option".
    var testBinary = "0"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. cmd/bucket-handlers.go

    		// Creating a bucket with locking requires the user having more permissions
    		for _, action := range []policy.Action{policy.PutBucketObjectLockConfigurationAction, policy.PutBucketVersioningAction} {
    			if !globalIAMSys.IsAllowed(policy.Args{
    				AccountName:     cred.AccessKey,
    				Groups:          cred.Groups,
    				Action:          action,
    				ConditionValues: getConditionValues(r, "", cred),
    				BucketName:      bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top