Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for place (0.19 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    	op := n.Op.Copy(fn, skip)
    	var place AST
    	if n.Place != nil {
    		place = n.Place.Copy(fn, skip)
    	}
    	typ := n.Type.Copy(fn, skip)
    	var ini AST
    	if n.Init != nil {
    		ini = n.Init.Copy(fn, skip)
    	}
    	if op == nil && place == nil && typ == nil && ini == nil {
    		return fn(n)
    	}
    	if op == nil {
    		op = n.Op
    	}
    	if place == nil {
    		place = n.Place
    	}
    	if typ == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	go globalReplicationStats.trackEWMA()
    }
    
    type proxyResult struct {
    	Proxy bool
    	Err   error
    }
    
    // get Reader from replication target if active-active replication is in place and
    // this node returns a 404
    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. src/cmd/link/internal/ld/data.go

    		sect.Extnum = n
    		n++
    	}
    }
    
    // allocateDataSectionForSym creates a new sym.Section into which a
    // single symbol will be placed. Here "seg" is the segment into which
    // the section will go, "s" is the symbol to be placed into the new
    // section, and "rwx" contains permissions for the section.
    func (state *dodataState) allocateDataSectionForSym(seg *sym.Segment, s loader.Sym, rwx int) *sym.Section {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    			proxytgts := getProxyTargets(ctx, bucket, object, opts)
    			if !proxytgts.Empty() {
    				globalReplicationStats.incProxy(bucket, getObjectAPI, false)
    				// proxy to replication target if active-active replication is in place.
    				reader, proxy, perr = proxyGetToReplicationTarget(ctx, bucket, object, rs, r.Header, opts, proxytgts)
    				if perr != nil {
    					globalReplicationStats.incProxy(bucket, getObjectAPI, true)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    if (applyRole) {
                        applyRole();
                    }
                }
    
                // Caller should place property value on the top of the stack
                protected void applyRole() {
                    // GENERATE getFactory().applyRole(<value>)
                    _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    			t.Fatal(err)
    		}
    		err = manager.dsStore.Add(ds)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		expectSyncDaemonSets(t, manager, ds, podControl, 1, 0, 0)
    	}
    }
    
    // DaemonSets should place onto NotReady nodes
    func TestNotReadyNodeDaemonDoesLaunchPod(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    		pod                       func() *api.Pod
    	}{
    		{
    			description:               "has in-place vertical scaling enabled with resources",
    			hasInPlaceVerticalScaling: true,
    			pod:                       podWithInPlaceVerticalScaling,
    		},
    		{
    			description:               "has in-place vertical scaling disabled",
    			hasInPlaceVerticalScaling: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      if [[ -n "${FLUENTD_GCP_MEMORY_REQUEST:-}" ]]; then
        any_overrides=true
      fi
      if ! $any_overrides; then
        # Nothing to do here.
        exit
      fi
    
      # Wait until ScalingPolicy CRD is in place.
      until kubectl get scalingpolicies.scalingpolicy.kope.io
      do
        sleep 10
      done
    
      # Single-shot, not managed by addon manager. Can be later modified or removed
      # at will.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	p.CgoCFLAGS = pp.CgoCFLAGS
    	p.CgoCPPFLAGS = pp.CgoCPPFLAGS
    	p.CgoCXXFLAGS = pp.CgoCXXFLAGS
    	p.CgoFFLAGS = pp.CgoFFLAGS
    	p.CgoLDFLAGS = pp.CgoLDFLAGS
    	p.CgoPkgConfig = pp.CgoPkgConfig
    	// We modify p.Imports in place, so make copy now.
    	p.Imports = make([]string, len(pp.Imports))
    	copy(p.Imports, pp.Imports)
    	p.Internal.RawImports = pp.Imports
    	p.TestGoFiles = pp.TestGoFiles
    	p.TestImports = pp.TestImports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    // that the remnant of the running pod is terminated and allow garbage collection to proceed. We do
    // not update the status of the pod because with the source of configuration removed, we have no
    // place to send that status.
    func (kl *Kubelet) SyncTerminatingRuntimePod(_ context.Context, runningPod *kubecontainer.Pod) error {
    	// TODO(#113606): connect this with the incoming context parameter, which comes from the pod worker.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top