Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for enumeration (0.12 sec)

  1. src/internal/syscall/windows/registry/registry_test.go

    		if wantFound && !haveFound {
    			t.Errorf("value %s is not found while enumerating", test.Name)
    		}
    		if haveFound && !wantFound {
    			t.Errorf("value %s is found while enumerating, but expected to fail", test.Name)
    		}
    		if haveFound {
    			delete(haveNames, test.Name)
    		}
    	}
    	for n, v := range haveNames {
    		t.Errorf("value %s (%v) is found while enumerating, but has not been created", n, v)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/main.go

    			if !seen[op.name] {
    				log.Fatalf("Op%s%s has no code generation in %s", a.name, op.name, a.genfile)
    			}
    		}
    	}
    }
    
    // Name returns the name of the architecture for use in Op* and Block* enumerations.
    func (a arch) Name() string {
    	s := a.name
    	if s == "generic" {
    		s = ""
    	}
    	return s
    }
    
    // countRegs returns the number of set bits in the register mask.
    func countRegs(r regMask) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. src/runtime/trace.go

    	cpuSleep    *wakeableSleep
    	cpuLogDone  <-chan struct{}
    	cpuBuf      [2]*traceBuf
    
    	reader atomic.Pointer[g] // goroutine that called ReadTrace, or nil
    
    	// Fast mappings from enumerations to string IDs that are prepopulated
    	// in the trace.
    	markWorkerLabels [2][len(gcMarkWorkerModeStrings)]traceArg
    	goStopReasons    [2][len(traceGoStopReasonStrings)]traceArg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest-generate_test.go

    	legacyWebhook := getWebhooksFromYaml(t, legacyDefaultInjector)
    	legacyRevWebhook := getWebhooksFromYaml(t, legacyRevisionInjector)
    
    	// predicate is used to filter out "obvious" test cases, to avoid enumerating all cases
    	// nolint: unparam
    	predicate := func(ls LabelSet) (string, bool) {
    		if ls.namespace.Get("istio-injection") == "disabled" {
    			return "", true
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top