Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 134 for gids (0.04 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    func inlChildren(slot int, calls *InlCalls) []int {
    	var kids []int
    	if slot != -1 {
    		for _, k := range calls.Calls[slot].Children {
    			if !isEmptyInlinedCall(k, calls) {
    				kids = append(kids, k)
    			}
    		}
    	} else {
    		for k := 0; k < len(calls.Calls); k += 1 {
    			if calls.Calls[k].Root && !isEmptyInlinedCall(k, calls) {
    				kids = append(kids, k)
    			}
    		}
    	}
    	return kids
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. pkg/api/v1/endpoints/util_test.go

    			}},
    			expect: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.4"}},
    				Ports:     []v1.EndpointPort{{Port: 111}, {Port: 222}},
    			}},
    		}, {
    			name: "two sets, dup ip, dup uids, two ports",
    			given: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.4", TargetRef: podRef("uid-1")}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/podcgroupns_test.go

    			},
    			expectPodUID:      "",
    			expectContainerID: "",
    			expectMsg:         "multiple pod UIDs found in cgroups (11111111-b29f-11e7-9350-020968147796, 22222222-b29f-11e7-9350-020968147796)",
    		},
    	} {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/encoding/json/bench_test.go

    	"sync"
    	"testing"
    )
    
    type codeResponse struct {
    	Tree     *codeNode `json:"tree"`
    	Username string    `json:"username"`
    }
    
    type codeNode struct {
    	Name     string      `json:"name"`
    	Kids     []*codeNode `json:"kids"`
    	CLWeight float64     `json:"cl_weight"`
    	Touches  int         `json:"touches"`
    	MinT     int64       `json:"min_t"`
    	MaxT     int64       `json:"max_t"`
    	MeanT    int64       `json:"mean_t"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    	ext := pkix.Extension{Id: oidExtensionExtendedKeyUsage}
    
    	oids := make([]asn1.ObjectIdentifier, len(extUsages)+len(unknownUsages))
    	for i, u := range extUsages {
    		if oid, ok := oidFromExtKeyUsage(u); ok {
    			oids[i] = oid
    		} else {
    			return ext, errors.New("x509: unknown extended key usage")
    		}
    	}
    
    	copy(oids[len(extUsages):], unknownUsages)
    
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

          return "${list_instances_rc}"
        fi
    
        process_count_left=${node_upgrade_parallelism}
        pids=()
        ret_code_sum=0  # Should stay 0 in the loop iff all parallel node upgrades succeed.
        for instance in "${instances[@]}"; do
          do-single-node-upgrade "${instance}" & pids+=("$!")
    
          # We don't want to run more than ${node_upgrade_parallelism} upgrades at a time,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    The plugin also integrates with <<test_kit.adoc#test_kit,TestKit>>, a library that aids in writing and executing functional tests for plugin code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. doc/godebug.md

    field, [`Policies`](/pkg/crypto/x509/#Certificate.Policies), which supports
    certificate policy OIDs with components larger than 31 bits. By default this
    field is only used during parsing, when it is populated with policy OIDs, but
    not used during marshaling. It can be used to marshal these larger OIDs, instead
    of the existing PolicyIdentifiers field, by using the
    [`x509usepolicies` setting.](/pkg/crypto/x509/#CreateCertificate).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/runtime/trace/trace.go

    //	   trace.WithRegion(ctx, "steamMilk", steamMilk)
    //	   trace.WithRegion(ctx, "extractCoffee", extractCoffee)
    //	   trace.WithRegion(ctx, "mixMilkCoffee", mixMilkCoffee)
    //	})
    //
    // A task is a higher-level component that aids tracing of logical
    // operations such as an RPC request, an HTTP request, or an
    // interesting local operation which may require multiple goroutines
    // working together. Since tasks can involve multiple goroutines,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. src/crypto/x509/oid.go

    		}
    	}
    	return b.String()
    }
    
    func (oid OID) toASN1OID() (asn1.ObjectIdentifier, bool) {
    	out := make([]int, 0, len(oid.der)+1)
    
    	const (
    		valSize         = 31 // amount of usable bits of val for OIDs.
    		bitsPerByte     = 7
    		maxValSafeShift = (1 << (valSize - bitsPerByte)) - 1
    	)
    
    	val := 0
    
    	for _, v := range oid.der {
    		if val > maxValSafeShift {
    			return nil, false
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top