Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for distinguish (0.15 sec)

  1. tensorflow/BUILD

    selects.config_setting_group(
        name = "is_cuda_enabled_and_windows",
        match_all = [
            ":is_cuda_enabled",
            ":windows",
        ],
    )
    
    # Config setting to use in select()s to distinguish open source build from
    # google internal build on configurable attributes.
    #
    # For non-configurable distinction between OSS and Google builds, see
    # `if_oss()` and `if_google()` macros in tensorflow.bzl.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                // And if we generate setter override for ConfigurableFileCollection, it's difficult to distinguish between these two cases in setFromAnyValue method.
                if ((property.isReadable() && hasPropertyType(property)) ||
                    (property.isReadOnly() && isConfigurableFileCollectionType(property.getType()))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function_test.cc

          for (size_t i = 0; i < strs.size(); ++i) {
            ptr[i] = strs[i].c_str();
          }
        }
        return ptr;
      }
    
      // An explicit `num_opers` is needed so that we can distinguish between the
      // case of no operations specified (-1) and the case of an empty set of
      // operations specified (0).
      void DefineT(int num_opers, const std::vector<TF_Operation*>& opers,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    and Gradle internal implementation classes may suffer breaking changes (or be renamed or removed) from one version to another without warning.
    
    It is important for users to distinguish between the API and internal parts of the Gradle codebase.
    This is typically achieved by including `internal` in the implementation package names.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    	// conflicts on binds for wildcard address when a service has NONE
    	// resolution type, since we collapse all HTTP listeners into a
    	// single 0.0.0.0:port listener and use vhosts to distinguish
    	// individual http services in that port
    	if cur, exists := listenerMap[listenerMapKey]; exists {
    		currentListenerEntry = cur
    		// NOTE: This is not a conflict. This is simply filtering the
    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/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DICD_INHERIT_CLASSDRVS DICD = 0x00000002
    )
    
    // SUOI flags control SetupUninstallOEMInf
    type SUOI uint32
    
    const (
    	SUOI_FORCEDELETE SUOI = 0x0001
    )
    
    // SPDIT flags to distinguish between class drivers and
    // device drivers. (Passed in 'DriverType' parameter of
    // driver information list APIs)
    type SPDIT uint32
    
    const (
    	SPDIT_NODRIVER     SPDIT = 0x00000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    	// The chains returned from servicePortChainNameBase and
    	// servicePortEndpointChainNameBase will always have at least one "/" in them.
    	// Since none of our "stock" chain names use slashes, we can distinguish them this
    	// way.
    	return strings.Contains(chainString, "/")
    }
    
    func isAffinitySetName(set string) bool {
    	return strings.HasPrefix(set, servicePortEndpointAffinityNamePrefix)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    )
    
    var (
    	// errSpec is used to determine if the error comes from the spec of HPA object in reconcileAutoscaler.
    	// All such errors should have this error as a root error so that the upstream function can distinguish spec errors from internal errors.
    	// e.g., fmt.Errorf("invalid spec%w", errSpec)
    	errSpec error = errors.New("")
    )
    
    type timestampedRecommendation struct {
    	recommendation int32
    	timestamp      time.Time
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    	// This also creates an opportunity for experiments to find a better order.
    	s.visitOrder = layoutRegallocOrder(f)
    
    	// Compute block order. This array allows us to distinguish forward edges
    	// from backward edges and compute how far they go.
    	s.blockOrder = make([]int32, f.NumBlocks())
    	for i, b := range s.visitOrder {
    		s.blockOrder[b.ID] = int32(i)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top