Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 729 for Combine2 (0.19 sec)

  1. pkg/apis/policy/v1/conversion.go

    		// no-op, preserve
    	default:
    		// otherwise, make sure the label intended to be used in a match-all or match-none selector
    		// never gets combined with user-specified fields
    		policy.StripPDBV1beta1Label(out.Spec.Selector)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/saved_variable_loading_test.cc

    INSTANTIATE_TEST_SUITE_P(
        SavedVariableIntegerDtypesTest, SavedVariableLoadingTest,
        ::testing::Combine(
            ::testing::ValuesIn(testing::DataTypeSetToVector(kDataTypeIsInteger)),
            ::testing::ValuesIn(testing::InterestingShapes())));
    
    INSTANTIATE_TEST_SUITE_P(
        SavedVariableFloatingDtypesTest, SavedVariableLoadingTest,
        ::testing::Combine(::testing::Values(DT_FLOAT, DT_DOUBLE),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/EncryptionAlgorithm.java

        interface IVLoader {
            void load(byte[] toLoad) throws IOException;
        }
    
        interface IVCollector {
            void collect(byte[] toCollect) throws IOException;
        }
    
        /**
         * Combines an algorithm and a key, and allows obtaining encryption/decryption ciphers according to those.
         */
        interface Session {
            SecretKey getKey();
            EncryptionAlgorithm getAlgorithm();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/analyze_test.go

    	YamlN1I1V1 = `
    apiVersion: testdata.istio.io/v1alpha1
    kind: Kind1
    metadata:
      namespace: n1
      name: i1
    spec:
      n1_i1: v1
    `
    	blankCombinedAnalyzer = analysis.Combine("testCombined", blankTestAnalyzer)
    )
    
    // Metadata implements Analyzer
    func (a *testAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:   "testAnalyzer",
    		Inputs: a.inputs,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // This file is generated by a SCRIPT.  DO NOT EDIT BY HAND!
    //
    // Currently Google Test supports at most $n arguments in Values,
    // and at most $maxtuple arguments in Combine. Please contact
    // ******@****.*** if you need more.
    // Please note that the number of arguments to Combine is limited
    // by the maximum arity of the implementation of tr1::tuple which is
    // currently set at $maxtuple.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Crc32cHashFunction.java

          }
        }
    
        @Override
        protected void processRemaining(ByteBuffer bb) {
          if (finished) {
            return;
          }
          crc0 = combine(0, crc0);
          crc0 = combine(crc0, crc1);
          crc0 = combine(crc0, crc2);
          crc0 = combine(crc0, crc3);
          while (bb.hasRemaining()) {
            crc0 = (crc0 >>> 8) ^ BYTE_TABLE[(bb.get() ^ crc0) & 0xFF];
          }
          finished = true;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/exception/ExceptionAnalyser.java

         */
        RuntimeException transform(Throwable failure);
    
        /**
         * Transforms and combines the given failures into a single build failure.
         *
         * @return null if the list of exceptions is empty.
         */
        @Nullable
        RuntimeException transform(List<Throwable> failures);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/instance.go

    package serviceregistry
    
    import (
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/cluster"
    )
    
    // Instance of a service registry. A single service registry combines the capabilities of service discovery
    // and the controller for managing asynchronous events.
    type Instance interface {
    	model.Controller
    	model.ServiceDiscovery
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.h

    //       _XlaCompileTimeConstantInputs={2}
    //
    // where
    //
    //   actual_size(op_shape, size, begin)[i] =
    //     size[i] == -1 ? (op_shape[i] - size[i])
    //                   : size[i]
    //
    // This pass, combined with jit/partially_decluster_pass, reduces the number of
    // unnecessary cluster recompilations in some common cases.  After the rewrite
    // shown above jit/partially_decluster_pass extracts the actual_size(...)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 26 21:01:34 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/DirectedGraphConnections.java

      /**
       * All node connections in this graph, in edge insertion order.
       *
       * <p>Note: This field and {@link #adjacentNodeValues} cannot be combined into a single
       * LinkedHashMap because one target node may be mapped to both a predecessor and a successor. A
       * LinkedHashMap combines two such edges into a single node-value pair, even though the edges may
       * not have been inserted consecutively.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top