Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,224 for cheese (0.12 sec)

  1. tensorflow/cc/framework/scope_internal.h

      const string& name() const { return name_; }
      const std::vector<Operation>& control_deps() const { return control_deps_; }
    
     private:
      friend class Scope;
    
      // Tag types to choose the constructor to dispatch.
      struct Tags {
        enum class ScopeName;
        enum class OpName;
        enum class ControlDeps;
        enum class Device;
        enum class SingleUseScope;
        enum class ExitOnError;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    The typical example is that using a single dependency declaration `project(":myLib")`, we would either choose the `arm64` or `i386` version of `myLib` depending on the architecture.
    
    To do this, we will add attributes to both the consumer and the producer.
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

           *
           * 1. On Android, querying a WeakReference blocks if the GC is doing an otherwise-concurrent
           * pass.
           *
           * 2. We would probably choose to compare exceptions using == instead of equals() (for
           * consistency with how weak references are cleared). That's a behavior change -- arguably the
           * removal of a feature.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantMapping.java

                if ("compile".equals(scope) || "runtime".equals(scope)) {
                    return scope;
                }
                throw new InvalidUserCodeException("Invalid Maven scope '" + scope + "'. You must choose between 'compile' and 'runtime'");
            }
    
            public boolean shouldPublish() {
                return !skip;
            }
    
            public String getMavenScope() {
                return mavenScope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/OutputUnpacker.java

                        // We could support an unfiltered DirectoryFileTree here as a cacheable root,
                        // but because @OutputDirectory also doesn't support it we choose not to.
                        consumer.accept(new DirectoryTreeOutputFilePropertySpec(
                            propertyName + "$" + index.incrementAndGet(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:56 UTC 2022
    - 9K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/options/validation.go

    			errs = append(errs, err)
    		}
    	}
    
    	secondaryServiceClusterIPRangeUsed := (options.SecondaryServiceClusterIPRange.IP != nil)
    	// note: While the cluster might be dualstack (i.e. pods with multiple IPs), the user may choose
    	// to only ingress traffic within and into the cluster on one IP family only. this family is decided
    	// by the range set on --service-cluster-ip-range. If/when the user decides to use dual stack services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. docs/hotfixes.md

    ## Creating a hotfix branch
    
    Customers in MinIO are allowed LTS on any release they choose to standardize. Production setups seldom change and require maintenance. Hotfix branches are such maintenance branches that allow customers to operate a production cluster without drastic changes to their deployment.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

            handle.waitForFinish()
    
            where:
            taskName << ['runJavaExec', 'runExecOperationsJavaExec', 'test']
        }
    
        /** To test attaching the debugger via a non-loopback network interface, we need to choose an IP address of such an interface. */
        private static final String nonLoopbackAddress() {
            println("Looking at network interfaces")
            def address = Collections.list(NetworkInterface.getNetworkInterfaces())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_image.go

    	allImages, err := m.imageService.ListImages(ctx, nil)
    	if err != nil {
    		klog.ErrorS(err, "Failed to list images")
    		return nil, err
    	}
    
    	for _, img := range allImages {
    		// Container runtimes may choose not to implement changes needed for KEP 4216. If
    		// the changes are not implemented by a container runtime, the exisiting behavior
    		// of not populating the runtimeHandler CRI field in ImageSpec struct is preserved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

                withProblem("Task `:declared` of type `Broken`: cannot serialize object of type 'org.gradle.api.internal.artifacts.configurations.DefaultConfigurationContainer', a subtype of 'org.gradle.api.artifacts.ConfigurationContainer', as these are not supported with the configuration cache.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top