Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 117 for Off (0.03 sec)

  1. cmd/batch-handlers.go

    			}
    		}
    	}
    }
    
    func lookupStyle(s string) miniogo.BucketLookupType {
    	var lookup miniogo.BucketLookupType
    	switch s {
    	case "on":
    		lookup = miniogo.BucketLookupPath
    	case "off":
    		lookup = miniogo.BucketLookupDNS
    	default:
    		lookup = miniogo.BucketLookupAuto
    
    	}
    	return lookup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	// maximum.
    	recordSizeBoostThreshold = 128 * 1024
    )
    
    // maxPayloadSizeForWrite returns the maximum TLS payload size to use for the
    // next application data record. There is the following trade-off:
    //
    //   - For latency-sensitive applications, such as web browsing, each TLS
    //     record should fit in one TCP segment.
    //   - For throughput-sensitive applications, such as large file transfers,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    // used for decrypting tickets. It is safe to call this function while the
    // server is running in order to rotate the session ticket keys. The function
    // will panic if keys is empty.
    //
    // Calling this function will turn off automatic session ticket key rotation.
    //
    // If multiple servers are terminating connections for the same host they should
    // all have the same session ticket keys. If the session ticket keys leaks,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			initNodes:       []*v1.Node{node1Zone2},
    			initCSINodes:    []*storagev1.CSINode{csiNode1Migrated},
    			shouldFail:      true,
    		},
    		"binding-node-pv-different-zones-migration-off": {
    			bindings:        []*BindingInfo{makeBinding(unboundPVC, nonmigrationPVBoundToUnbound)},
    			provisionedPVCs: []*v1.PersistentVolumeClaim{},
    			initPVs:         []*v1.PersistentVolume{nonmigrationPVBoundToUnbound},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    		// TODO(gri) for a better result, should probably incorporate both
    		//           the key and the node size into the decision process
    		useFF := true
    
    		// Determine element size: All bets are off if we don't have
    		// position information for the previous and next token (likely
    		// generated code - simply ignore the size in this case by setting
    		// it to 0).
    		prevSize := size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	)
    	runcmd := func(args ...string) ([]byte, error) {
    		cmd := exec.Command(args[0], args[1:]...)
    		var buf bytes.Buffer
    		cmd.Stdout = &buf
    		cmd.Stderr = &buf
    		cmd.Env = append(os.Environ(), "GOENV=off", "GOFLAGS=")
    		if runInDir != "" {
    			cmd.Dir = runInDir
    			// Set PWD to match Dir to speed up os.Getwd in the child process.
    			cmd.Env = append(cmd.Env, "PWD="+cmd.Dir)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_test.cc

    ==============================================================================*/
    
    #include "tensorflow/c/eager/c_api.h"
    
    #include <string.h>
    
    #include <memory>
    #include <string>
    
    // clang-format off
    #include "tensorflow/core/framework/attr_value.pb.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/platform.h"
    // clang-format on
    
    #include "absl/strings/match.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	// one of its parents. Running 'go env GOMOD' in the source directory would
    	// give a canonical answer, but we'd prefer not to execute another command.
    	go111Module := os.Getenv("GO111MODULE")
    	switch go111Module {
    	case "off":
    		return errNoModules
    	default: // "", "on", "auto", anything else
    		// Maybe use modules.
    	}
    
    	if srcDir != "" {
    		var absSrcDir string
    		if filepath.IsAbs(srcDir) {
    			absSrcDir = srcDir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		us.rangeProlog = mkAnonSym(sym.SDWARFRANGE)
    		us.infoEpilog = mkAnonSym(sym.SDWARFFCN)
    	}
    
    	var wg sync.WaitGroup
    	sema := make(chan struct{}, runtime.GOMAXPROCS(0))
    
    	// Kick off generation of .debug_frame, since it doesn't have
    	// any entanglements and can be started right away.
    	wg.Add(1)
    	go func() {
    		sema <- struct{}{}
    		defer func() {
    			<-sema
    			wg.Done()
    		}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      //   3. SC backward pass ("backward_ops")
      //   4. Loop counter updates ("non_tpu_ops")
      //
      // Next, extract the original conditional function which we'll use to
      // kick off the pre-loop pipelining steps.
      // are just the operands passed to the original WhileOp.
      func::FuncOp orig_cond_func = orig_while_op.cond_function();
    
      std::vector<Value> loop_operands_0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top