Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,268 for guarantee (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalog.java

    import org.gradle.plugin.use.PluginDependency;
    
    import java.util.List;
    import java.util.Optional;
    
    /**
     * Provides access to a version catalog. Unlike generated extension
     * classes for catalogs, there is no guarantee that the requested
     * aliases exist, so you must check existence on the returned optional
     * values.
     *
     * @since 7.0
     */
    @NonNullApi
    public interface VersionCatalog extends Named {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // functionalization is ran before import. Ops can be lifted out of
      // tf_executor dialect islands/graphs.
      pm.addNestedPass<FuncOp>(
          mlir::CreateExecutorDialectToFunctionalConversionPass());
      // Guarantee all functions have one use, which enables more exact shape
      // inference.
      pm.addPass(mlir::TF::CreateGuaranteeAllFuncsOneUsePass());
      // Run shape inference so that tf_executor/tf_device ops created later will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  3. cmd/kubeadm/app/phases/upgrade/preflight.go

    			"Once ready, the upgrade can be initiated by skipping the preflight check. During the upgrade, " +
    			"kubeadm will migrate the configuration while leaving the listed plugin configs untouched, " +
    			"but cannot guarantee that they will work with the newer version of CoreDNS.")
    		return errors.Errorf("CoreDNS cannot migrate the following plugins:\n%s", UnsupportedPlugins)
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. pkg/adsc/adsc.go

    	default:
    	}
    }
    
    // Save will save the json configs to files, using the base directory
    func (a *ADSC) Save(base string) error {
    	a.mutex.Lock()
    	defer a.mutex.Unlock()
    
    	// guarantee the persistence order for each element in tcpListeners
    	var sortTCPListeners []string
    	for key := range a.tcpListeners {
    		sortTCPListeners = append(sortTCPListeners, key)
    	}
    	sort.Strings(sortTCPListeners)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableEnumSet.java

       *
       * This class isn't an arbitrary ForwardingImmutableSet because we need to
       * know that calling {@code clone()} during deserialization will return an
       * object that no one else has a reference to, allowing us to guarantee
       * immutability. Hence, we support only {@link EnumSet}.
       */
      private final transient EnumSet<E> delegate;
    
      private ImmutableEnumSet(EnumSet<E> delegate) {
        this.delegate = delegate;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

                val IGNORED: Any = Ignored.INSTANCE
    
                // Enum ensures that only one instance of INSTANCE exists and even deserialization
                // doesn't create a new one. The `object` has no such guarantee.
                private
                enum class Ignored {
                    INSTANCE
                }
            }
        }
    
        data class EnvironmentVariablesPrefixedBy(
            val prefix: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/examples/stateful/stateful.go

    func (mp *MultipointExample) Unreserve(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) {
    	// Unlike Reserve, the Unreserve method may be called concurrently since
    	// there is no guarantee that there will only one unreserve operation at any
    	// given point in time (for example, during the binding cycle).
    	mp.mu.Lock()
    	defer mp.mu.Unlock()
    	mp.executionPoints = nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/math/cmplx/sqrt.go

    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 3K bytes
    - Viewed (0)
  9. src/strings/builder.go

    // bytes of capacity beyond len(b.buf).
    func (b *Builder) grow(n int) {
    	buf := bytealg.MakeNoZero(2*cap(b.buf) + n)[:len(b.buf)]
    	copy(buf, b.buf)
    	b.buf = buf
    }
    
    // Grow grows b's capacity, if necessary, to guarantee space for
    // another n bytes. After Grow(n), at least n bytes can be written to b
    // without another allocation. If n is negative, Grow panics.
    func (b *Builder) Grow(n int) {
    	b.copyCheck()
    	if n < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/go/terminal_test.go

    	//
    	// See issue 18153.
    	testenv.MustHaveGoBuild(t)
    
    	// Start with a "self test" to make sure that if we *don't* pass in a
    	// terminal, the test can correctly detect that. (cmd/go doesn't guarantee
    	// that it won't add a terminal in the middle, but that would be pretty weird.)
    	t.Run("pipe", func(t *testing.T) {
    		r, w, err := os.Pipe()
    		if err != nil {
    			t.Fatalf("pipe failed: %s", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 18:18:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top