Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,548 for _initialized (0.36 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue62430/main.go

    	}
    	s, err := p.Lookup("F")
    	if err != nil {
    		panic(err)
    	}
    
    	f := s.(func(string) *unicode.RangeTable)
    	if f("C") == nil {
    		panic("unicode.Categories not properly initialized")
    	} else {
    		fmt.Println("unicode.Categories properly initialized")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 13:18:51 UTC 2023
    - 804 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/likelyadjust.go

    	outer  *loop  // loop containing this loop
    
    	// By default, children, exits, and depth are not initialized.
    	children []*loop  // loops nested directly within this loop. Initialized by assembleChildren().
    	exits    []*Block // exits records blocks reached by exits from this loop. Initialized by findExits().
    
    	// Next three fields used by regalloc and/or
    	// aid in computation of inner-ness and list of blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/AbstractVisualStudioVersionLocator.java

        private final List<VisualStudioInstallCandidate> installs = new ArrayList<>();
        private boolean initialized;
    
        @Nonnull
        @Override
        public List<VisualStudioInstallCandidate> getVisualStudioInstalls() {
            if (!initialized) {
                installs.addAll(locateInstalls());
                initialized = true;
            }
    
            return installs;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables_test_pass.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(MarkInitializedVariablesTestPass)
    
      StringRef getArgument() const final {
        return "tf-saved-model-mark-initialized-variables-test";
      }
    
      StringRef getDescription() const final {
        return "Mark variables as initialized or not.";
      }
    
      void runOnOperation() override {
        TF::test_util::FakeSession session;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration_test.go

    		_, ok := LatencyTrackersFrom(parent)
    		if ok {
    			t.Error("expected LatencyTrackersFrom to not be initialized")
    		}
    
    		clk := clocktesting.FakeClock{}
    		ctx := WithLatencyTrackersAndCustomClock(parent, &clk)
    		wd, ok := LatencyTrackersFrom(ctx)
    		if !ok {
    			t.Error("expected LatencyTrackersFrom to be initialized")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:15:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/covdata/argsmerge.go

    	"strconv"
    )
    
    type argvalues struct {
    	osargs []string
    	goos   string
    	goarch string
    }
    
    type argstate struct {
    	state       argvalues
    	initialized bool
    }
    
    func (a *argstate) Merge(state argvalues) {
    	if !a.initialized {
    		a.state = state
    		a.initialized = true
    		return
    	}
    	if !slices.Equal(a.state.osargs, state.osargs) {
    		a.state.osargs = nil
    	}
    	if state.goos != a.state.goos {
    		a.state.goos = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 10:18:37 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/complit.go

    			return initDynamic
    		}
    		if n.Len/4 > int64(len(n.List)) {
    			// <25% of entries have explicit values.
    			// Very rough estimation, it takes 4 bytes of instructions
    			// to initialize 1 byte of result. So don't use a static
    			// initializer if the dynamic initialization code would be
    			// smaller than the static value.
    			// See issue 23780.
    			return initDynamic
    		}
    
    	case ir.OARRAYLIT, ir.OSTRUCTLIT:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu.go

    //go:linkname ARM64
    //go:linkname MIPS64X
    //go:linkname PPC64
    //go:linkname S390X
    
    // Initialize examines the processor and sets the relevant variables above.
    // This is called by the runtime package early in program initialization,
    // before normal init functions are run. env is set by runtime if the OS supports
    // cpu feature options in GODEBUG.
    func Initialize(env string) {
    	doinit()
    	processOptions(env)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/runtime/rand.go

    func readTimeRandom(r []byte) {
    	// Inspired by wyrand.
    	// An earlier version of this code used getg().m.procid as well,
    	// but note that this is called so early in startup that procid
    	// is not initialized yet.
    	v := uint64(nanotime())
    	for len(r) > 0 {
    		v ^= 0xa0761d6478bd642f
    		v *= 0xe7037ed1a0b428db
    		size := 8
    		if len(r) < 8 {
    			size = len(r)
    		}
    		for i := 0; i < size; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java

            protected Class<T> cls;
    
            protected Consumer<T> initializer;
    
            protected StandardCrawlerContainer container;
    
            private T instance;
    
            protected ComponentDef(final Class<T> cls, final Consumer<T> initializer, final StandardCrawlerContainer container) {
                this.cls = cls;
                this.initializer = initializer;
                this.container = container;
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top