Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 618 for compacting (0.13 sec)

  1. pkg/util/filesystem/util.go

    */
    
    package filesystem
    
    import (
    	"path/filepath"
    )
    
    // IsPathClean will replace slashes to Separator (which is OS-specific).
    // This will make sure that all slashes are the same before comparing.
    func IsPathClean(path string) bool {
    	return filepath.ToSlash(filepath.Clean(path)) == filepath.ToSlash(path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 876 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProjectConfigurationTracker.java

    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.atomic.AtomicLong;
    
    import static java.util.Comparator.comparing;
    import static java.util.stream.Collectors.toCollection;
    
    class ProjectConfigurationTracker implements BuildOperationTracker {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue8606.go

    	} {
    		f := func() {
    			defer func() {
    				if recover() != nil {
    					panic(fmt.Sprintf("comparing %#v and %#v panicked", test.a, test.b))
    				}
    			}()
    			if test.a == test.b {
    				panic(fmt.Sprintf("values %#v and %#v should not be equal", test.a, test.b))
    			}
    		}
    		if test.panic {
    			shouldPanic(fmt.Sprintf("comparing %#v and %#v did not panic", test.a, test.b), f)
    		} else {
    			f() // should not panic
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue8612.go

    //compile
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo had a bug comparing a struct or array value with an interface
    // values, when the struct or array was not addressable.
    
    package p
    
    type A [10]int
    
    type S struct {
    	i int
    }
    
    func F1() S {
    	return S{0}
    }
    
    func F2() A {
    	return A{}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 525 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// This field must only be set by the entity completing the attach
    	// operation, i.e. the external-attacher.
    	// +optional
    	AttachmentMetadata map[string]string `json:"attachmentMetadata,omitempty" protobuf:"bytes,2,rep,name=attachmentMetadata"`
    
    	// attachError represents the last error encountered during attach operation, if any.
    	// This field must only be set by the entity completing the attach
    	// operation, i.e. the external-attacher.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/NewerGradleNeededByPluginFailureDescriber.java

            return candidates.stream()
                .map(this::findMinGradleVersionSupportedByPlugin)
                .filter(Optional::isPresent)
                .map(Optional::get)
                .min(Comparator.comparing(GradleVersion::getVersion))
                .orElseThrow(IllegalStateException::new);
        }
    
        private Optional<GradleVersion> findMinGradleVersionSupportedByPlugin(AssessedCandidate candidate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512.go

    	return b[8:], byteorder.BeUint64(b)
    }
    
    // New returns a new hash.Hash computing the SHA-512 checksum.
    func New() hash.Hash {
    	if boring.Enabled {
    		return boring.NewSHA512()
    	}
    	d := &digest{function: crypto.SHA512}
    	d.Reset()
    	return d
    }
    
    // New512_224 returns a new hash.Hash computing the SHA-512/224 checksum.
    func New512_224() hash.Hash {
    	d := &digest{function: crypto.SHA512_224}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/gradients/array_grad_test.cc

      TF_RETURN_IF_ERROR(
          ops::IdentityN(ctx, inputs, absl::MakeSpan(temp_outputs), "IdentityN"));
      // Although, `ops::IdentityN` returns 2 tensors, the first tensor isn't needed
      // for computing gradient so we could safely drop it.
      outputs[0] = temp_outputs[1];
      temp_outputs[0]->Unref();
      return absl::OkStatus();
    }
    
    class CppGradients
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. README.md

    production workloads at scale using a system called [Borg],
    combined with best-of-breed ideas and practices from the community.
    
    Kubernetes is hosted by the Cloud Native Computing Foundation ([CNCF]).
    If your company wants to help shape the evolution of
    technologies that are container-packaged, dynamically scheduled,
    and microservices-oriented, consider joining the CNCF.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

    import org.gradle.internal.configuration.problems.PropertyProblem
    import org.gradle.internal.extensions.stdlib.capitalized
    import org.gradle.internal.logging.ConsoleRenderer
    import java.io.File
    import java.util.Comparator.comparing
    import java.util.concurrent.locks.ReentrantLock
    import kotlin.concurrent.withLock
    
    
    private
    const val maxConsoleProblems = 15
    
    
    private
    const val maxCauses = 5
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top