Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for tent (0.04 sec)

  1. configure.py

      # If CUDA is enabled, always use GPU during build and test.
      if environ_cp.get('TF_CUDA_CLANG') == '1':
        write_to_bazelrc('build --config=cuda_clang')
      else:
        write_to_bazelrc('build --config=cuda')
    
    
    def system_specific_test_config(environ_cp):
      """Add default build and test flags required for TF tests to bazelrc."""
      write_to_bazelrc('test --test_size_filters=small,medium')
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    }
    
    // transcriptMsg is a helper used to hash messages which are not hashed when
    // they are read from, or written to, the wire. This is typically the case for
    // messages which are either not sent, or need to be hashed out of order from
    // when they are read/written.
    //
    // For most messages, the message is marshalled using their marshal method,
    // since their wire representation is idempotent. For clientHelloMsg and
    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. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      @get:JvmName("writeTimeoutMillis")
      val writeTimeoutMillis: Int = builder.writeTimeout
    
      /** Web socket and HTTP/2 ping interval (in milliseconds). By default pings are not sent. */
      @get:JvmName("pingIntervalMillis")
      val pingIntervalMillis: Int = builder.pingInterval
    
      /** Web socket close timeout (in milliseconds). */
      @get:JvmName("webSocketCloseTimeout")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    // This ensures mac addresses are unique for proper load balancing
    // There is a possibility of MAC collisions but this Mac address is used for remote endpoints only
    // and not sent on the wire.
    func conjureMac(macPrefix string, ip net.IP) string {
    	if ip4 := ip.To4(); ip4 != nil {
    		a, b, c, d := ip4[0], ip4[1], ip4[2], ip4[3]
    		return fmt.Sprintf("%v-%02x-%02x-%02x-%02x", macPrefix, a, b, c, d)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    		}
    		// Otherwise, matching would just lead to immediate rejection. By not matching, we can let it pass
    		// through as raw TCP at least.
    		// NOTE: mtlsHTTPALPNs can always include 1.0, for simplicity, as it will only be sent if a client
    		return []string{"http/1.1", "h2c"}
    	}()
    	mtlsHTTPALPNs = []string{"istio-http/1.0", "istio-http/1.1", "istio-h2"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.go

    	test := *template
    	if template.config != nil {
    		test.config = template.config.Clone()
    	}
    	test.name = version + "-" + test.name
    	if len(test.command) == 0 {
    		test.command = defaultClientCommand
    	}
    	test.command = append([]string(nil), test.command...)
    	test.command = append(test.command, option)
    
    	runTestAndUpdateIfNeeded(t, version, test.run, test.wait)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    		klog.V(4).InfoS("Sending events to api server")
    		eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: kubeDeps.EventClient.Events("")})
    	} else {
    		klog.InfoS("No api server defined - no events will be sent to API server")
    	}
    }
    
    func getReservedCPUs(machineInfo *cadvisorapi.MachineInfo, cpus string) (cpuset.CPUSet, error) {
    	emptyCPUSet := cpuset.New()
    
    	if cpus == "" {
    		return emptyCPUSet, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        // We want to move the clustered_ops if the op to be added has all
        // statically shaped operands since we can't ensure that the static shapes
        // has been sent back to host in all cases.  See
        // @static_shapes_sandwiched_outside_compilation MLIR test for an example.
        if (!HasDynamicExternalValues(&op) && !clustered_ops.empty()) {
          llvm::SmallSetVector<Value, 4> external_operands =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters_test.go

    			node: &v1.Node{
    				Status: v1.NodeStatus{
    					Capacity: v1.ResourceList{
    						// it's impossible on any real system to reserve 1 byte,
    						// but we just need to test that the setter does the math
    						v1.ResourceHugePagesPrefix + "test": *resource.NewQuantity(1, resource.BinarySI),
    					},
    				},
    			},
    			maxPods: 110,
    			machineInfo: &cadvisorapiv1.MachineInfo{
    				NumCores:       2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. cmd/iam.go

    	}
    }
    
    func (sys *IAMSys) validateAndAddRolePolicyMappings(ctx context.Context, m map[arn.ARN]string) {
    	// Validate that policies associated with roles are defined. If
    	// authZ plugin is set, role policies are just claims sent to
    	// the plugin and they need not exist.
    	//
    	// If some mapped policies do not exist, we print some error
    	// messages but continue any way - they can be fixed in the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top