Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 125 for Unshare (0.24 sec)

  1. pilot/cmd/pilot-agent/status/server_test.go

    			// Agent metric is dynamic, so we just check a substring of it not the actual metric
    			output: `
    # TYPE istio_agent_scrapes_total counter
    istio_agent_scrapes_total`,
    		},
    		// When the application and envoy share a metric, Prometheus will fail. This negative check validates this
    		// assumption.
    		{
    			name: "conflict metric",
    			envoy: `# TYPE my_metric counter
    my_metric{} 0
    # TYPE my_other_metric counter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client.go

    			keyShareKeys.kyber, err = mlkem768.NewKeyFromSeed(seed)
    			if err != nil {
    				return nil, nil, nil, err
    			}
    			// For draft-tls-westerbaan-xyber768d00-03, we send both a hybrid
    			// and a standard X25519 key share, since most servers will only
    			// support the latter. We reuse the same X25519 ephemeral key for
    			// both, as allowed by draft-ietf-tls-hybrid-design-09, Section 3.2.
    			hello.keyShares = []keyShare{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. cmd/endpoint.go

    		// style is necessary to provide paths other than C:/,
    		// such as F:/, D:/ etc.
    		//
    		// Another additional benefit here is that this style also
    		// supports providing \\host\share support as well.
    		if runtime.GOOS == globalWindowsOSName {
    			if filepath.VolumeName(u.Path[1:]) != "" {
    				u.Path = u.Path[1:]
    			}
    		}
    
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall12(procNtCreateFile.Addr(), 11, uintptr(unsafe.Pointer(handle)), uintptr(access), uintptr(unsafe.Pointer(oa)), uintptr(unsafe.Pointer(iosb)), uintptr(unsafe.Pointer(allocationSize)), uintptr(attributes), uintptr(share), uintptr(disposition), uintptr(options), uintptr(eabuffer), uintptr(ealength),...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. src/testing/testing.go

    // without having to define separate functions for each. This enables uses
    // like table-driven benchmarks and creating hierarchical tests.
    // It also provides a way to share common setup and tear-down code:
    //
    //	func TestFoo(t *testing.T) {
    //	    // <setup code>
    //	    t.Run("A=1", func(t *testing.T) { ... })
    //	    t.Run("A=2", func(t *testing.T) { ... })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // NodePtrSet is a collection of nodes. Trimming a graph or tree requires a set
    // of objects which uniquely identify the nodes to keep. In a graph, NodeInfo
    // works as a unique identifier; however, in a tree multiple nodes may share
    // identical NodeInfos. A *Node does uniquely identify a node so we can use that
    // instead. Though a *Node also uniquely identifies a node in a graph,
    // currently, during trimming, graphs are rebuilt from scratch using only the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    So with dependency constraints, you automatically share the solution of dependency resolution issues with your consumers, while component metadata rules are only applied to your own build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/math/big/nat.go

    	//
    	karatsubaAdd(z[n2:], r, n)
    	karatsubaAdd(z[n2:], r[n:], n)
    	if s > 0 {
    		karatsubaAdd(z[n2:], p, n)
    	} else {
    		karatsubaSub(z[n2:], p, n)
    	}
    }
    
    // alias reports whether x and y share the same base array.
    //
    // Note: alias assumes that the capacity of underlying arrays
    // is never changed for nat values; i.e. that there are
    // no 3-operand slice expressions in this code (or worse,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  9. src/reflect/type.go

    type cacheKey struct {
    	kind  Kind
    	t1    *abi.Type
    	t2    *abi.Type
    	extra uintptr
    }
    
    // The funcLookupCache caches FuncOf lookups.
    // FuncOf does not share the common lookupCache since cacheKey is not
    // sufficient to represent functions unambiguously.
    var funcLookupCache struct {
    	sync.Mutex // Guards stores (but not loads) on m.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/runtime/export_test.go

    			sysFree(unsafe.Pointer(x), unsafe.Sizeof(*p.chunks[0]), testSysStat)
    		}
    	}
    }
    
    // BaseChunkIdx is a convenient chunkIdx value which works on both
    // 64 bit and 32 bit platforms, allowing the tests to share code
    // between the two.
    //
    // This should not be higher than 0x100*pallocChunkBytes to support
    // mips and mipsle, which only have 31-bit address spaces.
    var BaseChunkIdx = func() ChunkIdx {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top