Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Initializer (0.35 sec)

  1. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.noptrdata", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.enoptrdata", 0), sect)
    
    	hasinitarr := ctxt.linkShared
    
    	/* shared library initializer */
    	switch ctxt.BuildMode {
    	case BuildModeCArchive, BuildModeCShared, BuildModeShared, BuildModePlugin:
    		hasinitarr = true
    	}
    
    	if ctxt.HeadType == objabi.Haix {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    // a synchronous manner.
    func mustReplicate(ctx context.Context, bucket, object string, mopts mustReplicateOptions) (dsc ReplicateDecision) {
    	// object layer not initialized we return with no decision.
    	if newObjectLayerFn() == nil {
    		return
    	}
    
    	// Disable server-side replication on object prefixes which are excluded
    	// from versioning via the MinIO bucket versioning extension.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		klog.InfoS("Not starting ClusterTrustBundle informer because we are in static kubelet mode")
    	}
    
    	// NewInitializedVolumePluginMgr initializes some storageErrors on the Kubelet runtimeState (in csi_plugin.go init)
    	// which affects node ready status. This function must be called before Kubelet is initialized so that the Node
    	// ReadyState is accurate with the storage state.
    	klet.volumePluginMgr, err =
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    			expectedRespStatus: http.StatusForbidden,
    		},
    	}
    
    	// Iterating over the cases, fetching the object validating the response.
    	for i, testCase := range testCases {
    		// initialize HTTP NewRecorder, this records any mutations to response writer inside the handler.
    		rec := httptest.NewRecorder()
    		// construct HTTP request for Get Object end point.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/net/http/server.go

    		// courtesy of MaxBytesReader's EOF behavior.
    		mb := MaxBytesReader(w, r.Body, 4<<10)
    		io.Copy(io.Discard, mb)
    	}
    }
    
    // initALPNRequest is an HTTP handler that initializes certain
    // uninitialized fields in its *Request. Such partially-initialized
    // Requests come from ALPN protocol handlers.
    type initALPNRequest struct {
    	ctx context.Context
    	c   *tls.Conn
    	h   serverHandler
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		return v1.PodFailed
    	}
    
    	switch {
    	case pendingInitialization > 0 &&
    		// This is needed to handle the case where the pod has been initialized but
    		// the restartable init containers are restarting and the pod should not be
    		// placed back into v1.PodPending since the regular containers have run.
    		!kubecontainer.HasAnyRegularContainerStarted(&spec, info):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    TensorList. That is, the `element_shape` and `num_elements` arguments to a
    tensor list creation op are constant.
    
    A tensor list creation op `tf.EmptyTensorList`/`tf.TensorListReserve` will be
    turned in to a zero-initialized buffer, and the size is initialized to 0
    for `tf.EmptyTensorList` or the specified size for `tf.TensorListReserve`.
    Each push will be turned into `tf.XlaDynamicUpdateSlice` with the incremented
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // The -x flag causes graph to print the commands graph executes.
    //
    // See https://golang.org/ref/mod#go-mod-graph for more about 'go mod graph'.
    //
    // # Initialize new module in current directory
    //
    // Usage:
    //
    //	go mod init [module-path]
    //
    // Init initializes and writes a new go.mod file in the current directory, in
    // effect creating a new module rooted at the current directory. The go.mod file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. cmd/metrics-v2.go

    }
    
    // MetricsGroupV2 are a group of metrics that are initialized together.
    type MetricsGroupV2 struct {
    	metricsCache     *cachevalue.Cache[[]MetricV2] `msg:"-"`
    	cacheInterval    time.Duration
    	metricsGroupOpts MetricsGroupOpts
    }
    
    // MetricsGroupOpts are a group of metrics opts to be used to initialize the metrics group.
    type MetricsGroupOpts struct {
    	dependGlobalObjectAPI           bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    							DevicePath: "fake/path",
    						},
    					},
    				},
    			},
    		},
    	}
    	kubelet.recorder = fakeRecorder
    	if err := kubelet.setupDataDirs(); err != nil {
    		t.Fatalf("can't initialize kubelet data dirs: %v", err)
    	}
    	kubelet.daemonEndpoints = &v1.NodeDaemonEndpoints{}
    
    	kubelet.cadvisor = &cadvisortest.Fake{}
    	machineInfo, _ := kubelet.cadvisor.MachineInfo()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top