Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 107 for paused (0.11 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    // the requirement graph, explaining why that root either causes a module passed
    // in the mustSelect list to EditBuildList to be unattainable, or introduces an
    // unresolvable error in loading the requirement graph.
    type Conflict struct {
    	// Path is a path of requirements starting at some module version passed in
    	// the mustSelect argument and ending at a module whose requirements make that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    			fmt.Println("NO TESTS TO RUN")
    		} else if someExcluded {
    			fmt.Println("\nALL TESTS PASSED (some were excluded)")
    		} else {
    			fmt.Println("\nALL TESTS PASSED")
    		}
    	}
    	if t.failed {
    		xexit(1)
    	}
    }
    
    func (t *tester) shouldRunTest(name string) bool {
    	if t.runRx != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    //
    // addr and addr+size must be in the range [span.base(), span.limit).
    //
    // Note: addr+size must be passed as the limit argument to the iterator's next method on
    // each iteration. This slightly awkward API is to allow typePointers to be destructured
    // by the compiler.
    //
    // nosplit because it is used during write barriers and must not be preempted.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            }
        }
    
        private static List<Failure> toFailures(List<? extends InternalFailure> causes) {
            if (causes == null) {
                return null;
            }
            List<Failure> failures = new ArrayList<>();
            for (InternalFailure cause : causes) {
                failures.add(toFailure(cause));
            }
            return failures;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	} else {
    		// The container runtime keeps state on container statuses and
    		// what the container restart count is. When nodes are rebooted
    		// some container runtimes clear their state which causes the
    		// restartCount to be reset to 0. This causes the logfile to
    		// start at 0.log, which either overwrites or appends to the
    		// already existing log.
    		//
    		// We are checking to see if the log directory exists, and find
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller_test.go

    			assert.ElementsMatch(t, testcase.expectedEndpointPorts, slice.Ports)
    			assert.ElementsMatch(t, testcase.expectedEndpoints, slice.Endpoints)
    		})
    	}
    }
    
    // TestPodAddsBatching verifies that endpoint updates caused by pod addition are batched together.
    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// generatePodSandboxConfig and generateContainerConfig, which in turn
    	// passes it to various other functions, in order to facilitate functionality
    	// that requires this value (hosts file and downward API) and avoid races determining
    	// the pod IP in cases where a container requires restart but the
    	// podIP isn't in the status manager yet. The list of podIPs is used to
    	// generate the hosts file.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    	// for unschedulable pods. To change the default podInitialBackoffDurationSeconds used by the
    	// scheduler, update the ComponentConfig value in defaults.go
    	DefaultPodInitialBackoffDuration time.Duration = 1 * time.Second
    	// DefaultPodMaxBackoffDuration is the default value for the max backoff duration
    	// for unschedulable pods. To change the default podMaxBackoffDurationSeconds used by the
    	// scheduler, update the ComponentConfig value in defaults.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    			},
    		},
    		// ListObjectsResult-6.
    		// Used for Asserting prefixes.
    		// Used for test case with prefix = "obj", (testCase 30).
    		6: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "obj0"},
    				{Name: "obj1"},
    				{Name: "obj2"},
    			},
    		},
    		// ListObjectsResult-7.
    		// Used for Asserting prefixes and truncation.
    		// Used for test case with prefix = "new" and maxKeys = 1, (testCase 31).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    		}
    		groups.Remove(group)
    		c.iamUserGroupMemberships[member] = groups
    	}
    }
    
    // policyDBGet - lower-level helper; does not take locks.
    //
    // If a group is passed, it returns policies associated with the group.
    //
    // If a user is passed, it returns policies of the user along with any groups
    // that the server knows the user is a member of.
    //
    // In LDAP users mode, the server does not store any group membership
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top