Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for unitTable (0.33 sec)

  1. hack/unwanted-dependencies.json

          "github.com/gogo/protobuf": "unmaintained",
          "github.com/golang/mock": "unmaintained, archive mode",
          "github.com/google/gofuzz": "unmaintained, archive mode",
          "github.com/google/s2a-go": "cloud dependency, unstable",
          "github.com/google/shlex": "unmaintained, archive mode",
          "github.com/googleapis/enterprise-certificate-proxy": "references cloud dependencies",
          "github.com/googleapis/gax-go/v2": "references cloud dependencies",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. pkg/log/options.go

    	})
    }
    
    // Extension provides an extension mechanism for logs.
    // This is essentially like https://pkg.go.dev/golang.org/x/exp/slog#Handler.
    // This interface should be considered unstable; we will likely swap it for slog in the future and not expose zap internals.
    // Returns a modified Core interface, and a Close() function.
    type Extension func(c zapcore.Core) (zapcore.Core, func() error, error)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/sort/sort.go

    //    are enough different elements available to encode some permutations
    //    which have to be undone later (so not stable on any input).
    //  - All the optimal in-place sorting/merging algorithms I found are either
    //    unstable or rely on enough different elements in each step to encode the
    //    performed block rearrangements. See also "In-Place Merging Algorithms",
    //    Denham Coates-Evely, Department of Computer Science, Kings College,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/gradients/math_grad_test.cc

          ASSERT_EQ(errors::OK, status_.code()) << status_.message();
          immediate_execution_ctx_.reset(ctx_raw);
        }
    
        // Computing numerical gradients with TensorFloat-32 is numerically
        // unstable. Some forward pass tests also fail with TensorFloat-32 due to
        // low tolerances
        enable_tensor_float_32_execution(false);
      }
    
      AbstractContextPtr immediate_execution_ctx_;
      GradientRegistry registry_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 17:32:14 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

         */
        @Test
        void testCompareUuidVersionStringStream() {
            // this operation below fails with IAEx if comparison is unstable
            uuidVersionStringStream().map(this::newVersion).sorted().collect(toList());
        }
    
        private Stream<String> uuidVersionStringStream() {
            return Stream.of(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/types.go

    type UpgradeApplyConfiguration struct {
    	// KubernetesVersion is the target version of the control plane.
    	KubernetesVersion string
    
    	// AllowExperimentalUpgrades instructs kubeadm to show unstable versions of Kubernetes as an upgrade
    	// alternative and allows upgrading to an alpha/beta/release candidate version of Kubernetes.
    	// Default: false
    	AllowExperimentalUpgrades *bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * @return this resolution strategy
         * @since 6.1
         */
        ResolutionStrategy failOnChangingVersions();
    
        /**
         * Configures Gradle to fail the build is the resolution result is expected to be unstable, that is to say that
         * it includes dynamic versions or changing versions and therefore the result may change depending
         * on when the build is executed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// KubernetesVersion is the target version of the control plane.
    	// +optional
    	KubernetesVersion string `json:"kubernetesVersion,omitempty"`
    
    	// AllowExperimentalUpgrades instructs kubeadm to show unstable versions of Kubernetes as an upgrade
    	// alternative and allows upgrading to an alpha/beta/release candidate version of Kubernetes.
    	// Default: false
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_cluster_util.cc

      // determinism. Sorting control inputs could help (but not necessarily) create
      // a deterministic serialization and fingerprint. Other sources of
      // nondeterminism include unstable node ordering.
      SortControlInputs(&def);
    
      std::string s;
      if (!SerializeToStringDeterministic(def, &s)) {
        return errors::Internal("Failed to serialize graphdef.");
      }
      return s;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    					tpsList = append(tpsList, targetPort)
    				}
    			}
    
    			// Iterate over target ports in the same order as defined in service spec, in case of
    			// protocol conflict for a port causes unstable protocol selection for a port.
    			for _, tp := range tpsList {
    				svcPort := tps[tp]
    				out = append(out, model.ServiceTarget{
    					Service: modelService,
    					Port: model.ServiceInstancePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top