Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 662 for doPing (0.09 sec)

  1. cmd/kubeadm/app/constants/constants.go

    	// the bootstrap tokens to access the kubeadm-certs Secret during the join of a new control-plane
    	KubeadmCertsClusterRoleName = fmt.Sprintf("kubeadm:%s", KubeadmCertsSecret)
    
    	// DefaultKubernetesPlaceholderVersion is a placeholder version in case the component-base
    	// version was not populated during build.
    	DefaultKubernetesPlaceholderVersion = version.MustParseSemantic("v1.0.0-placeholder-version")
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

                                ArrayRef<int> input_indices,
                                QuantizedType quantized_type, int& input_index,
                                int& filter_index);
    
      // Preprocesses the constants by doing the following:
      //   - Duplicates constants if it is used by multiple ops. For example, if a
      //     constant is used by multiple ops as a bias, duplicate constants and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/object.go

    	// 1) client-supplied (via NewFunc with no signature), or
    	// 2) internally created but not yet type-checked.
    	// For case 1) we can't do anything; the client must know what they are doing.
    	// For case 2) we can use the information gathered by the resolver.
    	return obj.hasPtrRecv_
    }
    
    func (*Func) isDependency() {} // a function may be a dependency of an initialization expression
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_function.cc

                                   "' has a reference type ", DataTypeString(dt))
                 : absl::OkStatus();
    }
    
    // Converts `ninputs` and `inputs` into `inputs_tensors` and `input_nodes` and
    // does various checks while doing so. `input_nodes` will contain the same
    // information as input_tensors just in a different structure to make
    // following processing easier. TODO(iga): Simplify this nested structure.
    Status ProcessInputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                contextualLabel == 'Type \'MyTask\' property \'tree.nonAnnotated\' is missing an input or output annotation'
                details == 'A property without annotation isn\'t considered during up-to-date checking'
                solutions == [
                    'Add an input or output annotation',
                    'Mark it as @Internal',
                ]
                additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                Binding<?> binding = ReflectionUtils.generateImplicitBinding(key);
                doBind(key, binding);
            }
            return this;
        }
    
        private LinkedHashSet<Key<?>> current = new LinkedHashSet<>();
    
        private Injector doBind(Key<?> key, Binding<?> binding) {
            if (!current.add(key)) {
                current.add(key);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. cmd/storage-rest-server.go

    		var hint string
    		if endpoint.URL != nil {
    			hint = fmt.Sprintf("Drive '%s' does not support O_DIRECT flags, MinIO erasure coding requires filesystems with O_DIRECT support", endpoint.Path)
    		} else {
    			hint = "Drives do not support O_DIRECT flags, MinIO erasure coding requires filesystems with O_DIRECT support"
    		}
    		logger.Fatal(config.ErrUnsupportedBackend(err).Hint(hint), "Unable to initialize backend")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server.go

    		tls3des.Value() // ensure godebug is initialized
    		tls3des.IncNonDefault()
    	}
    
    	for _, id := range hs.clientHello.cipherSuites {
    		if id == TLS_FALLBACK_SCSV {
    			// The client is doing a fallback connection. See RFC 7507.
    			if hs.clientHello.vers < c.config.maxSupportedVersion(roleServer) {
    				c.sendAlert(alertInappropriateFallback)
    				return errors.New("tls: client using inappropriate protocol fallback")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. src/go/types/check.go

    	"strings"
    	"sync/atomic"
    )
    
    // nopos, noposn indicate an unknown position
    var nopos token.Pos
    var noposn = atPos(nopos)
    
    // debugging/development support
    const debug = false // leave on during development
    
    // gotypesalias controls the use of Alias types.
    // As of Apr 16 2024 they are used by default.
    // To disable their use, set GODEBUG to gotypesalias=0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

        // being selected in phase 1
        Preconditions.checkState(boxedBoolean, "", (Object) boxedLong);
    
        // ternaries introduce their own problems. because of the ternary (which requires a boxing
        // operation) no overload can be selected in phase 1.  and in phase 2 it is ambiguous since it
        // matches with the second parameter being boxed and without it being boxed.  The cast to Object
        // avoids this.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top