Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for 20something (0.17 sec)

  1. src/cmd/dist/test.go

    	t.runNames = flag.Args()
    
    	// Set GOTRACEBACK to system if the user didn't set a level explicitly.
    	// Since we're running tests for Go, we want as much detail as possible
    	// if something goes wrong.
    	//
    	// Set it before running any commands just in case something goes wrong.
    	if ok := isEnvSet("GOTRACEBACK"); !ok {
    		if err := os.Setenv("GOTRACEBACK", "system"); err != nil {
    			if t.keepGoing {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    			// bitmask, which we allocate/free here.
    			// TODO: it would be nice if there were a way to run a GC
    			// program without having to store all its bits. We'd have
    			// to change from a Lempel-Ziv style program to something else.
    			// Or we can forbid putting objects on stacks if they require
    			// a gc program (see issue 27447).
    			s = materializeGCProg(r.ptrdata(), gcdata)
    			gcdata = (*byte)(unsafe.Pointer(s.startAddr))
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. plugin/pkg/admission/noderestriction/admission_test.go

    	sliceNode := &resourceapi.ResourceSlice{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "something",
    		},
    		NodeName: nodename,
    	}
    	sliceOtherNode := &resourceapi.ResourceSlice{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "something",
    		},
    		NodeName: nodename + "-other",
    	}
    
    	tests := map[string]struct {
    		operation      admission.Operation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    					ld.error(fmt.Errorf("%s: %w", pkg.stackText(), err.Err))
    					break
    				}
    			}
    			ld.error(err)
    			break
    		}
    		if slices.Equal(rs.rootModules, ld.requirements.rootModules) {
    			// Something is deeply wrong. resolveMissingImports gave us a non-empty
    			// set of modules to add to the graph, but adding those modules had no
    			// effect — either they were already in the graph, or updateRoots did not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    		}
    	}
    }
    
    func TestLastIndexByte(t *testing.T) {
    	testCases := []BinOpTest{
    		{"", "q", -1},
    		{"abcdef", "q", -1},
    		{"abcdefabcdef", "a", len("abcdef")},      // something in the middle
    		{"abcdefabcdef", "f", len("abcdefabcde")}, // last byte
    		{"zabcdefabcdef", "z", 0},                 // first byte
    		{"a☺b☻c☹d", "b", len("a☺")},               // non-ascii
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    // so \pL{1000} is only one rune slice, not 1000.
    // We could keep a cache of character classes we've seen,
    // so that all the \pL we see use the same rune list,
    // but that doesn't remove the problem entirely:
    // consider something like [\pL01234][\pL01235][\pL01236]...[\pL^&*()].
    // And because the Rune slice is exposed directly in the Regexp,
    // there is not an opportunity to change the representation to allow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	// One oddity you may have noticed is that we also subtract out heapFree, i.e. unscavenged
    	// memory that may contain heap objects in the future.
    	//
    	// Let's take a step back. In an ideal world, this term would look something like just
    	// the heap goal. That is, we "reserve" enough space for the heap to grow to the heap
    	// goal, and subtract out everything else. This is of course impossible; the definition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    		}
    		return queueSkip
    	}
    
    	rejectorPlugins := pInfo.UnschedulablePlugins.Union(pInfo.PendingPlugins)
    	if len(rejectorPlugins) == 0 {
    		// No failed plugins are associated with this Pod.
    		// Meaning something unusual (a temporal failure on kube-apiserver, etc) happened and this Pod gets moved back to the queue.
    		// In this case, we should retry scheduling it because this Pod may not be retried until the next flush.
    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. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                        continue;
                    }
                    if (targetComponent != null && targetComponent.getModule().isChangingSelection()) {
                        // don't requeue something which is already changing selection
                        continue;
                    }
                    outgoingDependency.cleanUpOnSourceChange(this);
                }
                outgoingEdges.clear();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    		clear(b)
    	}
    }
    
    // heapBits returns the heap ptr/scalar bits stored at the end of the span for
    // small object spans and heap arena spans.
    //
    // Note that the uintptr of each element means something different for small object
    // spans and for heap arena spans. Small object spans are easy: they're never interpreted
    // as anything but uintptr, so they're immune to differences in endianness. However, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top