Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 347 for regular (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

                "Declare the task as untracked by using Task.doNotTrackState(). " +
                getDisableStateTrackingLink())
            failureHasCause("java.io.IOException: Cannot snapshot ${namedPipe}: not a regular file")
        }
    
        @Requires(UnitTestPreconditions.FilePermissions)
        def "tracked task consuming unreadable content fails"() {
            def rootDir = file("build/root")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

                removed("removed/input": "input"),
                modified("modified/input": "input"),
                added("added/input": "input")
            ]
        }
    
        def "comparing regular snapshot to empty snapshot shows entries removed (strategy: #strategy)"() {
            def fingerprint = Mock(FileCollectionFingerprint) {
                getFingerprints() >> [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status.go

    	}
    
    	// This is in addition to the regular syncNodeStatus logic so we can get the container runtime status earlier.
    	// This function itself has a mutex and it doesn't recursively call fastNodeStatusUpdate or syncNodeStatus.
    	kl.updateRuntimeUp()
    
    	node, changed := kl.updateNode(ctx, originalNode)
    
    	if !changed {
    		// We don't do markVolumesFromNode(node) here and leave it to the regular syncNodeStatus().
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

                    if (to == Bound.NO_BOUND) {
                      extremeValues.remove(extremeValues.size() - 1);
                      extremeValues.remove(extremeValues.size() - 1);
                    }
    
                    // the regular values should be visible after filtering
                    List<E> allEntries = new ArrayList<>();
                    allEntries.addAll(extremeValues);
                    allEntries.addAll(normalValues);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/authentication.go

    				if mode == v1beta1.PeerAuthentication_MutualTLS_UNSET {
    					policy.globalMutualTLSMode = MTLSPermissive
    				} else {
    					policy.globalMutualTLSMode = ConvertToMutualTLSMode(mode)
    				}
    			} else {
    				// For regular namespace, just add to the intermediate map.
    				foundNamespaceMTLS[config.Namespace] = mode
    			}
    		}
    
    		// Add the config to the map by namespace for future look up. This is done after namespace/mesh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

            private ArtifactVerificationOperation.ArtifactKind determineArtifactKind(ComponentArtifactMetadata artifact) {
                ArtifactVerificationOperation.ArtifactKind artifactKind = ArtifactVerificationOperation.ArtifactKind.REGULAR;
                if (artifact instanceof ModuleDescriptorArtifactMetadata) {
                    artifactKind = ArtifactVerificationOperation.ArtifactKind.METADATA;
                }
                return artifactKind;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/ipset/ipset.go

    	GetVersion() (string, error)
    }
    
    // IPSetCmd represents the ipset util. We use ipset command for ipset execute.
    const IPSetCmd = "ipset"
    
    // EntryMemberPattern is the regular expression pattern of ipset member list.
    // The raw output of ipset command `ipset list {set}` is similar to,
    // Name: foobar
    // Type: hash:ip,port
    // Revision: 2
    // Header: family inet hashsize 1024 maxelem 65536
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. pkg/scheduler/metrics/resources/resources_test.go

    				kube_pod_resource_request{namespace="test",node="node-one",pod="foo",priority="0",resource="cpu",scheduler="default-scheduler",unit="cores"} 1
    				`,
    		},
    		{
    			name: "init containers and regular containers when initialized",
    			pods: []*v1.Pod{
    				{
    					ObjectMeta: metav1.ObjectMeta{Namespace: "test", Name: "foo"},
    					Spec: v1.PodSpec{
    						NodeName: "node-one",
    						InitContainers: []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  9. pkg/scheduler/eventhandlers_test.go

    	tests := []struct {
    		name               string
    		nodeFn             func() *v1.Node
    		existingPods, pods []*v1.Pod
    		want               []bool
    	}{
    		{
    			name: "regular node, pods with a single constraint",
    			nodeFn: func() *v1.Node {
    				return st.MakeNode().Name("fake-node").Label("hostname", "fake-node").Capacity(cpu8).Obj()
    			},
    			existingPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. src/archive/tar/writer.go

    			return nil
    		}
    		info, err := d.Info()
    		if err != nil {
    			return err
    		}
    		// TODO(#49580): Handle symlinks when fs.ReadLinkFS is available.
    		if !info.Mode().IsRegular() {
    			return errors.New("tar: cannot add non-regular file")
    		}
    		h, err := FileInfoHeader(info, "")
    		if err != nil {
    			return err
    		}
    		h.Name = name
    		if err := tw.WriteHeader(h); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top