Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 528 for logic (0.18 sec)

  1. pkg/scheduler/framework/preemption/preemption.go

    	victimsMap := ev.CandidatesToVictimsMap(candidates)
    	scoreFuncs := ev.OrderedScoreFuncs(ctx, victimsMap)
    	candidateNode := pickOneNodeForPreemption(logger, victimsMap, scoreFuncs)
    
    	// Same as candidatesToVictimsMap, this logic is not applicable for out-of-tree
    	// preemption plugins that exercise different candidates on the same nominated node.
    	if victims := victimsMap[candidateNode]; victims != nil {
    		return &candidate{
    			victims: victims,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    		for _, admissionAttribute := range admissionAttributes {
    			if IsDefaultDeny(admissionAttribute.result) {
    				admissionAttribute.result = lastErr
    			}
    		}
    		return
    	}
    
    	// this retry logic has the same bug that its possible to be checking against quota in a state that never actually exists where
    	// you've added a new documented, then updated an old one, your resource matches both and you're only checking one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

        def "multiModule init with incubating"() {
            def dsl = dslFixtureFor(scriptDsl)
            def conventionPluginScript = targetDir.file("build-logic/src/main/${scriptDsl.name().toLowerCase()}/${scriptDsl.fileNameFor("buildlogic.java-conventions")}")
            def conventionPluginBuildFile = targetDir.file("build-logic/" + dsl.buildFileName)
            def warSubprojectBuildFile = targetDir.file("webinar-war/" + dsl.buildFileName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. maven-compat/src/main/mdo/profiles.mdo

                purposes.</description>
            </field>
            <field>
              <name>activation</name>
              <version>1.0.0</version>
              <description><![CDATA[The conditional logic which will automatically
                trigger the inclusion of this profile.]]></description>
              <association>
                <type>Activation</type>
              </association>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

        private static final String DEFAULT_DATE_FORMAT = "yyyyMMddHHmmss";
    
        private static String formatDate(Date date, boolean forSnapshotTimestamp) {
            // logic from metadata.mdo, class "Versioning"
            TimeZone timezone = TimeZone.getTimeZone("UTC");
            DateFormat fmt =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

    import org.gradle.internal.model.ModelContainer;
    
    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * Encapsulates all logic required to build a {@link LocalConfigurationMetadata} from a
     * {@link ConfigurationInternal}. Utilizes caching to prevent unnecessary duplicate conversions
     * between DSL and internal metadata types.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

      if (op_set_ != OpSet::XLA) {
        // Convert Einsum into BatchMatMul for non-XLA opsets.
        // For the uniform opset, it is requested to maintain the BatchMatmul logic.
        // For the TF opset, since we need to test the effect we remain it as a
        // future work.
        patterns.add<TF::ConvertTFEinsumOp>(ctx);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops_invalid.mlir

      }
    
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
      // Sanity-check that we are verifying tf_saved_model.index_path attributes
      // on results as well. The underlying verification logic is shared,
      // so no need to test all error cases.
    
      // expected-error@+1 {{'tf_saved_model.index_path' elements should be strings or 64-bit integers}}
      func.func @f() -> (tensor<f32> {tf_saved_model.index_path = [1.0]})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

        }
    
        //===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
    
        private static OptionalEntity<StemmerOverrideItem> getEntity(final CreateForm form) {
            switch (form.crudMode) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        public static OptionalEntity<ElevateWord> getEntity(final CreateForm form, final String username, final long currentTime) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top