Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 633 for subreg (0.13 sec)

  1. internal/config/subnet/config.go

    	config.KV{
    		Key:   config.Proxy,
    		Value: "",
    	},
    }
    
    // Config represents the subnet related configuration
    type Config struct {
    	// The subnet license token - Deprecated Dec 2021
    	License string `json:"license"`
    
    	// The subnet api key
    	APIKey string `json:"apiKey"`
    
    	// The HTTP(S) proxy URL to use for connecting to SUBNET
    	Proxy string `json:"proxy"`
    
    	// Transport configured with proxy_url if set optionally.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

        table.put("foo", 2, 'b');
        assertEquals(ImmutableMap.of(2, 'b'), row);
        assertEquals(ImmutableMap.of(2, 'b'), subRow);
        row.clear();
        assertEquals(ImmutableMap.of(), row);
        assertEquals(ImmutableMap.of(), subRow);
        table.put("foo", 5, 'x');
        assertEquals(ImmutableMap.of(5, 'x'), row);
        assertEquals(ImmutableMap.of(5, 'x'), subRow);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_split_v1.0.0.txt

    Written by hand.
    Test case for getting a package that has been moved to a different module.
    
    -- .mod --
    module example.com/split
    -- .info --
    {"Version": "v1.0.0"}
    -- subpkg/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 196 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_split_subpkg_v1.1.0.txt

    Written by hand.
    Test case for getting a package that has been moved to a different module.
    
    -- .mod --
    module example.com/split/subpkg
    
    require example.com/split v1.1.0
    -- .info --
    {"Version": "v1.1.0"}
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 230 bytes
    - Viewed (0)
  5. cmd/license-update.go

    		return
    	}
    
    	lic := r.String()
    	if lic == globalSubnetConfig.License {
    		// license hasn't changed.
    		return
    	}
    
    	kv := "subnet license=" + lic
    	result, err := setConfigKV(ctx, objectAPI, []byte(kv))
    	if err != nil {
    		internalLogIf(ctx, fmt.Errorf("error setting subnet license config: %w", err))
    		return
    	}
    
    	if result.Dynamic {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/runtime/signal_openbsd_ppc64.go

    func (c *sigctxt) r8() uint64  { return c.regs().sc_reg[8] }
    func (c *sigctxt) r9() uint64  { return c.regs().sc_reg[9] }
    func (c *sigctxt) r10() uint64 { return c.regs().sc_reg[10] }
    func (c *sigctxt) r11() uint64 { return c.regs().sc_reg[11] }
    func (c *sigctxt) r12() uint64 { return c.regs().sc_reg[12] }
    func (c *sigctxt) r13() uint64 { return c.regs().sc_reg[13] }
    func (c *sigctxt) r14() uint64 { return c.regs().sc_reg[14] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/reflect/export_test.go

    var CallGC = &callGC
    
    // FuncLayout calls funcLayout and returns a subset of the results for testing.
    //
    // Bitmaps like stack, gc, inReg, and outReg are expanded such that each bit
    // takes up one byte, so that writing out test cases is a little clearer.
    // If ptrs is false, gc will be nil.
    func FuncLayout(t Type, rcvr Type) (frametype Type, argSize, retOffset uintptr, stack, gc, inReg, outReg []byte, ptrs bool) {
    	var ft *abi.Type
    	var abid abiDesc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. samples/kind-lb/setupkind.sh

      echo "    -w|--worker-nodes  - the number of worker nodes to create. Default is 1"
      echo "    --pod-subnet       - the pod subnet to specify. Default is 10.244.0.0/16 for IPv4 and fd00:10:244::/56 for IPv6"
      echo "    --service-subnet   - the service subnet to specify. Default is 10.96.0.0/16 for IPv4 and fd00:10:96::/112 for IPv6"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/virtualservice_destinationrules.yaml

            host: reviews
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews-bogussubset
      namespace: default
    spec:
      http:
      - route:
        - destination:
            host: reviews
            subset: bogus # This subset does not exist, should result in a validation error
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_symlink.txt

    stdout golang.org/x/text
    
    go get ./subpkg
    go list -deps -f '{{.Module}}' ./subpkg
    stdout golang.org/x/text
    
    # Create a copy of the module using symlinks in src/links.
    mkdir links
    symlink links/go.mod -> $GOPATH/src/go.mod
    symlink links/go.sum -> $GOPATH/src/go.sum
    symlink links/issue.go -> $GOPATH/src/issue.go
    mkdir links/subpkg
    symlink links/subpkg/issue.go -> $GOPATH/src/subpkg/issue.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top