Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 301 for subreg (0.13 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    			if ctxt.Arch.Family == sys.I386 {
    				breg := byteswapreg(ctxt, &p.To)
    				if breg != REG_AX {
    					ab.Put1(0x87) // xchg lhs,bx
    					ab.asmando(ctxt, cursym, p, &p.From, reg[breg])
    					subreg(&pp, z, breg)
    					ab.doasm(ctxt, cursym, &pp)
    					ab.Put1(0x87) // xchg lhs,bx
    					ab.asmando(ctxt, cursym, p, &p.From, reg[breg])
    				} else {
    					ab.Put1(byte(0x90 + reg[z])) // xchg lsh,ax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. releasenotes/notes/duplicate-subset-names.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 20 09:31:05 UTC 2024
    - 155 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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/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)
  7. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		}
    	}
    	// validate the subnet/s
    	for _, s := range subnets {
    		numAddresses := netutils.RangeSize(s)
    		if numAddresses < minAddrs {
    			allErrs = append(allErrs, field.Invalid(fldPath, s.String(), fmt.Sprintf("subnet with %d address(es) is too small, the minimum is %d", numAddresses, minAddrs)))
    		}
    
    		// Warn when the subnet is in site-local range - i.e. contains addresses that belong to fec0::/10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- $cluster := .Cluster }}
    {{- range $i, $subset := $subsets }}
    {{- range $revision, $version := $revVerMap }}
    apiVersion: apps/v1
    {{- if $.StatefulSet }}
    kind: StatefulSet
    {{- else }}
    kind: Deployment
    {{- end }}
    metadata:
    {{- if $.Compatibility }}
      name: {{ $.Service }}-{{ $subset.Version }}-{{ $revision }}
    {{- else }}
      name: {{ $.Service }}-{{ $subset.Version }}
    {{- end }}
    spec:
      {{- if $.StatefulSet }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertThat(set.subSet(1, 4)).containsExactly(1, 2, 3).inOrder();
        assertThat(set.subSet(2, 4)).containsExactly(2, 3).inOrder();
        assertThat(set.subSet(3, 4)).containsExactly(3).inOrder();
        assertThat(set.subSet(3, 3)).isEmpty();
        assertThat(set.subSet(2, 3)).containsExactly(2).inOrder();
        assertThat(set.subSet(1, 3)).containsExactly(1, 2).inOrder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/SetsTest.java

        assertEquals(ImmutableSortedSet.of(4, 6, 8, 10), Sets.subSet(set, Range.atLeast(4)));
        assertEquals(ImmutableSortedSet.of(8, 10), Sets.subSet(set, Range.atLeast(7)));
        assertEquals(empty, Sets.subSet(set, Range.atLeast(20)));
    
        assertEquals(set, Sets.subSet(set, Range.greaterThan(0)));
        assertEquals(ImmutableSortedSet.of(6, 8, 10), Sets.subSet(set, Range.greaterThan(4)));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
Back to top