Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for gids (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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