Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 502 for picard (0.17 sec)

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

    // 2. A node with minimum highest priority victim is picked.
    // 3. Ties are broken by sum of priorities of all victims.
    // 4. If there are still ties, node with the minimum number of victims is picked.
    // 5. If there are still ties, node with the latest start time of all highest priority victims is picked.
    // 6. If there are still ties, the first such node is picked (sort of randomly).
    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. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.wizard;
    
    import java.io.UnsupportedEncodingException;
    import java.net.URLEncoder;
    import java.util.List;
    
    import javax.annotation.Resource;
    
    import org.apache.commons.lang3.StringUtils;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/DefaultTransformCodec.kt

                writeEnum(value.inputArtifactLineEndingNormalization)
                writeEnum(value.inputArtifactDependenciesLineEndingNormalization)
                write(value.isolatedParameters)
                // TODO - isolate now and discard node, if isolation is scheduled but has no dependencies
            }
        }
    
        override suspend fun ReadContext.decode(): DefaultTransform {
            return decodePreservingSharedIdentity {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyInternal.java

    import org.gradle.internal.ImmutableActionSet;
    
    public interface ResolutionStrategyInternal extends ResolutionStrategy {
        /**
         * Discard any configuration state that is not required after graph resolution has been attempted.
         */
        void maybeDiscardStateRequiredForGraphResolution();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/image/jpeg/writer_test.go

    				uint8(rnd.Intn(256)),
    				255,
    			})
    		}
    	}
    	b.SetBytes(640 * 480 * 4)
    	b.ReportAllocs()
    	b.ResetTimer()
    	options := &Options{Quality: 90}
    	for i := 0; i < b.N; i++ {
    		Encode(io.Discard, img, options)
    	}
    }
    
    func BenchmarkEncodeYCbCr(b *testing.B) {
    	img := image.NewYCbCr(image.Rect(0, 0, 640, 480), image.YCbCrSubsampleRatio420)
    	bo := img.Bounds()
    	rnd := rand.New(rand.NewSource(123))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  6. internal/hash/reader_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = io.Copy(io.Discard, r)
    	if err != nil {
    		t.Fatal(err)
    	}
    	md5sum := r.MD5Current()
    	if hex.EncodeToString(md5sum) != "e2fc714c4727ee9395f324cd2e7f331f" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.cc

      Fprint128 cache_key =
          orig_op->MutableAttrs()->CacheKey(orig_op->DeviceName());
      // Include soft placement policy in cache key since the placement strategy
      // can change and thus affect which kernel is picked.
      auto x = FingerprintCat64(cache_key.high64, cache_key.low64);
      std::string fname =
          absl::StrCat("_expanded_", ndef.name(), "_", std::to_string(x));
      if (!ctx.FindFunctionByName(fname)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

    // todo - don't store null links to child blocks in leaf index blocks
    // todo - align block boundaries
    // todo - thread safety control
    // todo - merge small values into a single data block
    // todo - discard when file corrupt
    // todo - include data directly in index entry when serializer can guarantee small fixed sized data
    // todo - free list leaks disk space
    // todo - merge adjacent free blocks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/create.go

    	if kerr != nil {
    		return kerr
    	}
    
    	if len(objectMeta.GetGenerateName()) == 0 {
    		// If we don't have a generated name, return the original error (AlreadyExists).
    		// When we're here, the user picked a name that is causing a conflict.
    		return err
    	}
    
    	// Get the group resource information from the context, if populated.
    	gr := schema.GroupResource{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	return len(src), nil
    }
    
    type discard struct{ NopResetter }
    
    func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	return 0, len(src), nil
    }
    
    var (
    	// Discard is a Transformer for which all Transform calls succeed
    	// by consuming all bytes and writing nothing.
    	Discard Transformer = discard{}
    
    	// Nop is a SpanningTransformer that copies src to dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top