Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 197 for mean_t (0.15 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                String mKey = m.getGroupId() + ":" + m.getArtifactId() + ":" + m.getVersion();
                if (key.equals(mKey)) {
                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // Removes the unused resource arguments, and the return values that forward the
    // removed arguments. If old_to_new_arg_indices is provided, it will store the
    // new argument index that corresponds to each original index (-1 means it is
    // removed). If remaining_resource_data_types is provided, it will store the
    // data types of the remaining resource arguments, where the indices are after
    // removing unused ones.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #define GTEST_NAME_ "Google Test"
    #define GTEST_PROJECT_URL_ "http://code.google.com/p/googletest/"
    
    // Determines the version of gcc that is used to compile this.
    #ifdef __GNUC__
    // 40302 means version 4.3.2.
    # define GTEST_GCC_VER_ \
        (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__)
    #endif  // __GNUC__
    
    // Determines the platform on which Google Test is compiled.
    #ifdef __CYGWIN__
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    	// value of the BasicConstraints' "pathLenConstraint".
    	//
    	// When parsing a certificate, a positive non-zero MaxPathLen
    	// means that the field was specified, -1 means it was unset,
    	// and MaxPathLenZero being true mean that the field was
    	// explicitly set to zero. The case of MaxPathLen==0 with MaxPathLenZero==false
    	// should be treated equivalent to -1 (unset).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    	// The node is marked as timeout. The attach operation will always fail and return timeout error
    	// but the operation is actually succeeded.
    	TimeoutAttachNode = "timeout-attach-node"
    	// The node is marked as multi-attach which means it is allowed to attach the volume to multiple nodes.
    	MultiAttachNode = "multi-attach-node"
    	// TimeoutOnSetupVolumeName will cause Setup call to timeout but volume will finish mounting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/runtime/map.go

    	loadFactorDen = 2
    	loadFactorNum = loadFactorDen * abi.MapBucketCount * 13 / 16
    
    	// data offset should be the size of the bmap struct, but needs to be
    	// aligned correctly. For amd64p32 this means 64-bit alignment
    	// even though pointers are 32 bit.
    	dataOffset = unsafe.Offsetof(struct {
    		b bmap
    		v int64
    	}{}.v)
    
    	// Possible tophash values. We reserve a few possibilities for special marks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    }
    
    // TunnelProtocol indicates the tunneling protocol for requests.
    type TunnelProtocol int32
    
    const (
    	// NONE means requests should be forwarded as-is, without tunneling.
    	TunnelProtocol_NONE TunnelProtocol = 0
    	// HBONE means requests should be tunneled over HTTP.
    	// This does not dictate HTTP/1.1 vs HTTP/2; ALPN should be used for that purpose.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    		proxier.onEndpointsMapChange(&svcPortName, false)
    	}
    
    	for svcPortName, eps := range newEndpointsMap {
    		logFormattedEndpoints("endpointsMapChange newEndpointsMap", logLevel, svcPortName, eps)
    		// redundantCleanup true means cleanup is called second time on the same svcPort
    		redundantCleanup := svcPortMap[svcPortName]
    		proxier.onEndpointsMapChange(&svcPortName, redundantCleanup)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    						if service.Attributes.ServiceRegistry != provider.Kubernetes && len(instances) == 0 && service.Attributes.LabelSelectors == nil {
    							// A Kubernetes service with no endpoints means there are no endpoints at
    							// all, so don't bother sending, as traffic will never work. If we did
    							// send a wildcard listener, we may get into a situation where a scale
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_FLAGSEX_DRIVERLIST_FROM_URL      DI_FLAGSEX = 0x00200000 // build driver list from INF(s) retrieved from URL specified in SP_DEVINSTALL_PARAMS.DriverPath (empty string means Windows Update website)
    	DI_FLAGSEX_EXCLUDE_OLD_INET_DRIVERS DI_FLAGSEX = 0x00800000 // Don't include old Internet drivers when building a driver list. Ignored on Windows Vista and later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
Back to top