Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 214 for gives (0.28 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    func (s *ambientTestServer) clearEvents() {
    	s.fx.Clear()
    }
    
    // Returns the XDS resource name for the given pod.
    func (s *ambientTestServer) podXdsName(name string) string {
    	return fmt.Sprintf("%s//Pod/%s/%s",
    		s.clusterID, testNS, name)
    }
    
    // Returns the XDS resource name for the given address.
    func (s *ambientTestServer) addrXdsName(addr string) string {
    	return string(s.network) + "/" + addr
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    		// Pass 0 for the goid parameter so we don't print it again.
    		printcreatedby1(f, ancestor.gopc, 0)
    	}
    }
    
    // printAncestorTracebackFuncInfo prints the given function info at a given pc
    // within an ancestor traceback. The precision of this info is reduced
    // due to only have access to the pcs at the time of the caller
    // goroutine being created.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	    part of a benchmark's identifier must match the corresponding
    	    element in the sequence, if any. Possible parents of matches
    	    are run with b.N=1 to identify sub-benchmarks. For example,
    	    given -bench=X/Y, top-level benchmarks matching X are run
    	    with b.N=1 to find any sub-benchmarks matching Y, which are
    	    then run in full.
    
    	-benchtime t
    	    Run enough iterations of each benchmark to take t, specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    // variable of an assignment, or of a function result variable.
    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    			return true
    		}
    	}
    	return false
    }
    
    // newBasic returns a new basic type of the given kind.
    func newBasic(kind Kind, obj Object) *Type {
    	t := newType(kind)
    	t.obj = obj
    	return t
    }
    
    // NewInterface returns a new interface for the given methods and
    // embedded types. Embedded types are specified as fields with no Sym.
    func NewInterface(methods []*Field) *Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    	if err = dsc.syncNodes(ctx, ds, podsToDelete, nodesNeedingDaemonPods, hash); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    // syncNodes deletes given pods and creates new daemon set pods on the given nodes
    // returns slice with errors if any
    func (dsc *DaemonSetsController) syncNodes(ctx context.Context, ds *apps.DaemonSet, podsToDelete, nodesNeedingDaemonPods []string, hash string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    	select {
    	case err := <-errCh:
    		return err
    	default:
    	}
    	return nil
    }
    
    // ensureJobConditionStatus appends or updates an existing job condition of the
    // given type with the given status value. Note that this function will not
    // append to the conditions list if the new condition's status is false
    // (because going from nothing to false is meaningless); it can, however,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    One can discover what tasks are available by running `gradle tasks`. You can then find out the type of a given task by running `gradle help --task <taskName>`, as demonstrated here:
    
    [source,text]
    ----
    ❯ ./gradlew help --task test
    ...
    Type
         Test (org.gradle.api.tasks.testing.Test)
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    }
    
    func matchReturnedCookies(t *testing.T, expected, given []*Cookie) {
    	if len(given) != len(expected) {
    		t.Logf("Received cookies: %v", given)
    		t.Errorf("Expected %d cookies, got %d", len(expected), len(given))
    	}
    	for _, ec := range expected {
    		foundC := false
    		for _, c := range given {
    			if ec.Name == c.Name && ec.Value == c.Value {
    				foundC = true
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    // variable of an assignment, or of a function result variable.
    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top