Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 91 for Fermat (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    In Gradle 8.8, this mechanism was extended to permit configuration of retention of local build cache entries, providing improved control and consistency.
    
    - Specifying `Cleanup.DISABLED` or `Cleanup.ALWAYS` will now prevent or force the cleanup of the local build cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                        problems,
                        severity,
                        version,
                        fieldName,
                        sourceHint,
                        "uses an unsupported snapshot version format, should be '*-SNAPSHOT' instead.",
                        tracker);
                return false;
            }
    
            return true;
        }
    
        private boolean validate20PluginVersion(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    		catchall = m.Regex == "*"
    	}
    
    	return catchall
    }
    
    // translateMetadataMatch translates a header match to dynamic metadata matcher. Returns nil if the header is not supported
    // or the header format is invalid for generating metadata matcher.
    //
    // The currently only supported header is @request.auth.claims for JWT claims matching. Claims of type string or list of string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. pkg/volume/testing/testing.go

    	}
    	used, err := resource.ParseQuantity(strings.Fields(string(out))[0])
    	if err != nil {
    		return nil, fmt.Errorf("failed to parse 'du' output %s due to error %v", out, err)
    	}
    	used.Format = resource.BinarySI
    	return &used, nil
    }
    
    // VerifyAttachCallCount ensures that at least one of the Attachers for this
    // plugin has the expectedAttachCallCount number of calls. Otherwise it returns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. .bazelrc

    build:elinux_aarch64 --config=elinux
    build:elinux_aarch64 --cpu=aarch64
    build:elinux_armhf --config=elinux
    build:elinux_armhf --cpu=armhf
    build:elinux_armhf --copt -mfp16-format=ieee
    
    # Config-specific options should come above this line.
    
    # Load rc file written by ./configure.
    try-import %workspace%/.tf_configure.bazelrc
    try-import %workspace%/xla_configure.bazelrc
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    			for k := range config.StaticPodURLHeader {
    				config.StaticPodURLHeader[k] = []string{"<masked>"}
    			}
    			// log the kubelet's config for inspection
    			klog.V(5).InfoS("KubeletConfiguration", "configuration", klog.Format(config))
    
    			// set up signal context for kubelet shutdown
    			ctx := genericapiserver.SetupSignalContext()
    
    			utilfeature.DefaultMutableFeatureGate.AddMetrics()
    			// run the kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. src/reflect/type.go

    type StructTag string
    
    // Get returns the value associated with key in the tag string.
    // If there is no such key in the tag, Get returns the empty string.
    // If the tag does not have the conventional format, the value
    // returned by Get is unspecified. To determine whether a tag is
    // explicitly set to the empty string, use [StructTag.Lookup].
    func (tag StructTag) Get(key string) string {
    	v, _ := tag.Lookup(key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    			// ensure all attributes of endpoint slice match expected state
    			slice := sliceList.Items[0]
    			assert.Equal(t, slice.Annotations[v1.EndpointsLastChangeTriggerTime], creationTimestamp.UTC().Format(time.RFC3339Nano))
    			assert.ElementsMatch(t, testcase.expectedEndpointPorts, slice.Ports)
    			assert.ElementsMatch(t, testcase.expectedEndpoints, slice.Endpoints)
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	// insufficient replicas are detected. Each pod stamped out by the StatefulSet
    	// will fulfill this Template, but have a unique identity from the rest
    	// of the StatefulSet. Each pod will be named with the format
    	// <statefulsetname>-<podindex>. For example, a pod in a StatefulSet named
    	// "web" with index number "3" would be named "web-3".
    	// The only allowed template.spec.restartPolicy value is "Always".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      static final boolean GENERATE_CANCELLATION_CAUSES;
    
      static {
        // System.getProperty may throw if the security policy does not permit access.
        boolean generateCancellationCauses;
        try {
          generateCancellationCauses =
              Boolean.parseBoolean(
                  System.getProperty("guava.concurrent.generate_cancellation_cause", "false"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top