Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 60 for importing (0.31 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message TracerDatadogConfig {
      // Address in host:port format for reporting trace data to the Datadog agent.
      string address = 1;
    }
    
    // Configuration for the lightstep tracing service.
    message TracerLightStepConfig {
      // Sets the lightstep satellite pool address in host:port format for reporting trace data.
      string address = 1;
    
      // Sets the lightstep access token.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    // there are no remaining workers. Specifically, when
    //
    //	work.nwait == work.nproc && !gcMarkWorkAvailable(p)
    //
    // The calling context must be preemptible.
    //
    // Flushing local work is important because idle Ps may have local
    // work queued. This is the only way to make that work visible and
    // drive GC to completion.
    //
    // It is explicitly okay to have write barriers in this function. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    	}
    }
    
    // buildUserGroupMemberships - builds the memberships map. IMPORTANT:
    // Assumes that c.Lock is held by caller.
    func (c *iamCache) buildUserGroupMemberships() {
    	for group, gi := range c.iamGroupsMap {
    		c.updateGroupMembershipsMap(group, &gi)
    	}
    }
    
    // updateGroupMembershipsMap - updates the memberships map for a
    // group. IMPORTANT: Assumes c.Lock() is held by caller.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// basis point at (sweepHeapLiveBasis, pagesSweptBasis). At
    	// any given time, the system is at (gcController.heapLive,
    	// pagesSwept) in this space.
    	//
    	// It is important that the line pass through a point we
    	// control rather than simply starting at a 0,0 origin
    	// because that lets us adjust sweep pacing at any time while
    	// accounting for current progress. If we could only adjust
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    // lastChanged and lastChecked "times" so unchanged predecessors can be
    // skipped on after-the-first iterations.  Doing this allows extra
    // iterations by the caller to be almost free.
    //
    // It is important to know that the set representation used for
    // startState, endState, and merges can share data for two sets where
    // one is a small delta from the other.  Doing this does require a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	case _Lparen:
    		pos := p.pos()
    		p.next()
    		p.xnest++
    		x := p.expr()
    		p.xnest--
    		p.want(_Rparen)
    
    		// Optimization: Record presence of ()'s only where needed
    		// for error reporting. Don't bother in other cases; it is
    		// just a waste of memory and time.
    		//
    		// Parentheses are not permitted around T in a composite
    		// literal T{}. If the next token is a {, assume x is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // here, we need to check that applying the new resolution filter
            // we would actually exclude exactly the same dependencies as in
            // the previous visit. It is important that this is NOT a heuristic
            // (it used to be) because if the filters are _equivalent_, we would
            // revisit all dependencies and possibly change the classpath order!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

            -OutFile C:\configure.ps1
        Import-Module -Force C:\k8s-node-setup.psm1  # -Force to override existing
        # Execute functions manually or run configure.ps1.
    #>
    
    # IMPORTANT PLEASE NOTE:
    # Any time the file structure in the `windows` directory changes, `windows/BUILD`
    # and `k8s.io/release/lib/releaselib.sh` must be manually updated with the changes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    		for _, q := range queries {
    			for _, cs := range q.candidates {
    				sw.Error(cs.err)
    			}
    		}
    		// Only switch if we need a newer toolchain.
    		// Otherwise leave the cs.err for reporting later.
    		if sw.NeedSwitch() {
    			sw.Switch(ctx)
    			// If NeedSwitch is true and Switch returns, Switch has failed to locate a newer toolchain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    			needsFlush = true
    
    			// Prepare the final Failed condition to update the job status with after the finalizers are removed.
    			// It is also used in the enactJobFinished function for reporting.
    			jobCtx.finishedCondition = newFailedConditionForFailureTarget(jobCtx.finishedCondition, jm.clock.Now())
    		}
    	}
    	if isSuccessCriteriaMetCondition(jobCtx.finishedCondition) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top