Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,773 for compared (0.13 sec)

  1. pkg/apis/scheduling/v1beta1/defaults.go

    	runtime "k8s.io/apimachinery/pkg/runtime"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_PriorityClass sets additional defaults compared to its counterpart
    // in extensions.
    func SetDefaults_PriorityClass(obj *v1beta1.PriorityClass) {
    	if obj.PreemptionPolicy == nil {
    		preemptLowerPriority := apiv1.PreemptLowerPriority
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalGroupFactory.java

    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Preserves identity of {@see OrdinalGroup} instances so there's a 1-to-1 mapping of ordinals to groups allowing groups
     * to be freely compared by identity.
     */
    @ServiceScope(Scope.Build.class)
    public class OrdinalGroupFactory {
    
        private final List<OrdinalGroup> groups = new ArrayList<>();
    
        public final OrdinalGroup group(int ordinal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/fingerprint/classpath/ClasspathFingerprinter.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Responsible for calculating a {@link FileCollectionFingerprint} for a {@link org.gradle.api.file.FileCollection} representing a Java classpath. Compared to {@link RelativePathFileCollectionFingerprinter} this fingerprinter orders files within any sub-tree.
     *
     * @see org.gradle.api.tasks.Classpath
     */
    @ServiceScope(Scope.UserHome.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/fingerprint/classpath/CompileClasspathFingerprinter.java

    /**
     * Responsible for calculating a {@link FileCollectionFingerprint} for a {@link org.gradle.api.file.FileCollection} representing a Java
     * compile classpath. Compared to {@link RelativePathFileCollectionFingerprinter} this fingerprinter orders files within any sub-tree.
     *
     * @see org.gradle.api.tasks.CompileClasspath
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 16:58:45 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue67160.go

    // Test to make sure that we don't try using larger loads for
    // generated equality functions on architectures that can't do
    // unaligned loads.
    
    package main
    
    // T has a big field that wants to be compared with larger loads/stores.
    // T is "special" because of the unnamed field, so it needs a generated equality function.
    // T is an odd number of bytes in size and has alignment 1.
    type T struct {
    	src [8]byte
    	_   byte
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:34:04 UTC 2024
    - 767 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/ClasspathNormalizer.java

     * limitations under the License.
     */
    
    package org.gradle.api.tasks;
    
    /**
     * Normalizes file input that represents a Java runtime classpath.
     *
     * Compared to the default behavior this normalizer keeps the order of any root files,
     * but ignores the order and timestamps of files in directories and ZIP/JAR files.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 28 21:23:55 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/work/InputChanges.java

     * </ul>
     *
     * @since 5.4
     */
    public interface InputChanges {
        /**
         * Indicates if it was possible for Gradle to determine which input files were out of date compared to a previous execution.
         * Incremental inputs are unavailable when history is unavailable (i.e. this piece of work has never been executed before), or if there are changes to non-file input properties, or output files.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/runtime/signal_plan9.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    type sigTabT struct {
    	flags int
    	name  string
    }
    
    // Incoming notes are compared against this table using strncmp, so the
    // order matters: longer patterns must appear before their prefixes.
    // There are _SIG constants in os2_plan9.go for the table index of some
    // of these.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 16:25:17 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  9. releasenotes/notes/inbound-passthrough.yaml

          variable in Istiod.
    
          Previously, requests would be forwarded to `localhost`. This leads to two important differences compared to running applications
          without Istio:
    
          * Applications that bind to `localhost` will be exposed to external pods.
          * Applications that bind to `<POD_IP>` will not be exposed to external pods.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/gover.go

    func Compare(x, y string) int {
    	return gover.Compare(x, y)
    }
    
    // Max returns the maximum of x and y interpreted as toolchain versions,
    // compared using Compare.
    // If x and y compare equal, Max returns x.
    func Max(x, y string) string {
    	return gover.Max(x, y)
    }
    
    // IsLang reports whether v denotes the overall Go language version
    // and not a specific release. Starting with the Go 1.21 release, "1.x" denotes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top