Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 176 for Ds (0.09 sec)

  1. src/cmd/internal/objabi/reloctype.go

    	// instruction is a "DS-form" instruction, which has an immediate field occupying
    	// bits [15:2] of the instruction word. Bits [15:2] of the address of the
    	// relocated symbol are inserted into this field; it is an error if the last two
    	// bits of the address are not 0.
    	R_ADDRPOWER_DS
    
    	// R_ADDRPOWER_GOT relocates a D-form + DS-form instruction sequence by inserting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	X5:   "X5",
    	X6:   "X6",
    	X7:   "X7",
    	X8:   "X8",
    	X9:   "X9",
    	X10:  "X10",
    	X11:  "X11",
    	X12:  "X12",
    	X13:  "X13",
    	X14:  "X14",
    	X15:  "X15",
    	CS:   "CS",
    	SS:   "SS",
    	DS:   "DS",
    	ES:   "ES",
    	FS:   "FS",
    	GS:   "GS",
    	GDTR: "GDTR",
    	IDTR: "IDTR",
    	LDTR: "LDTR",
    	MSW:  "MSW",
    	TASK: "TASK",
    	CR0:  "CR0",
    	CR1:  "CR1",
    	CR2:  "CR2",
    	CR3:  "CR3",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/calico-node-daemonset.yaml

      updateStrategy:
        type: RollingUpdate
      template:
        metadata:
          labels:
            k8s-app: calico-node
        spec:
          priorityClassName: system-node-critical
          nodeSelector:
            projectcalico.org/ds-ready: "true"
          hostNetwork: true
          serviceAccountName: calico
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 12:18:44 UTC 2021
    - 6K bytes
    - Viewed (0)
  4. pkg/registry/apps/daemonset/storage/storage.go

    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"ds"}
    }
    
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	X7:   "%xmm7",
    	X8:   "%xmm8",
    	X9:   "%xmm9",
    	X10:  "%xmm10",
    	X11:  "%xmm11",
    	X12:  "%xmm12",
    	X13:  "%xmm13",
    	X14:  "%xmm14",
    	X15:  "%xmm15",
    	CS:   "%cs",
    	SS:   "%ss",
    	DS:   "%ds",
    	ES:   "%es",
    	FS:   "%fs",
    	GS:   "%gs",
    	GDTR: "%gdtr",
    	IDTR: "%idtr",
    	LDTR: "%ldtr",
    	MSW:  "%msw",
    	TASK: "%task",
    	CR0:  "%cr0",
    	CR1:  "%cr1",
    	CR2:  "%cr2",
    	CR3:  "%cr3",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.ds;
    
    import java.io.File;
    import java.io.InputStream;
    import java.nio.file.FileSystem;
    import java.nio.file.FileSystems;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.HashSet;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/runtime/defs_linux_386.go

    	ss_size  uintptr
    }
    
    type sigcontext struct {
    	gs            uint16
    	__gsh         uint16
    	fs            uint16
    	__fsh         uint16
    	es            uint16
    	__esh         uint16
    	ds            uint16
    	__dsh         uint16
    	edi           uint32
    	esi           uint32
    	ebp           uint32
    	esp           uint32
    	ebx           uint32
    	edx           uint32
    	ecx           uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/ads_test.go

    func TestPushQueueLeak(t *testing.T) {
    	ds := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{})
    	p := ds.ConnectADS()
    	p.RequestResponseAck(t, nil)
    	for _, c := range ds.Discovery.AllClients() {
    		leak.MustGarbageCollect(t, c)
    	}
    	ds.Discovery.AdsPushAll(&model.PushRequest{Push: ds.PushContext()})
    	p.Cleanup()
    }
    
    func TestDistribution(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/list6.go

    	"Z16",
    	"Z17",
    	"Z18",
    	"Z19",
    	"Z20",
    	"Z21",
    	"Z22",
    	"Z23",
    	"Z24",
    	"Z25",
    	"Z26",
    	"Z27",
    	"Z28",
    	"Z29",
    	"Z30",
    	"Z31",
    	"CS", // [D_CS]
    	"SS",
    	"DS",
    	"ES",
    	"FS",
    	"GS",
    	"GDTR", // [D_GDTR]
    	"IDTR", // [D_IDTR]
    	"LDTR", // [D_LDTR]
    	"MSW",  // [D_MSW]
    	"TASK", // [D_TASK]
    	"CR0",  // [D_CR]
    	"CR1",
    	"CR2",
    	"CR3",
    	"CR4",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/amd64.s

    	SHLL	CX, R12
    	SHLL	CX, foo+4(SB)
    	// Old syntax, still accepted:
    	SHLL	CX, R11:AX // SHLL CX, AX, R11
    
    // LTYPEM spec6	{ outcode($1, &$2); }
    	MOVL	AX, R11
    	MOVL	$4, R11
    //	MOVL	AX, 0(AX):DS // no longer works - did it ever?
    
    // LTYPEI spec7	{ outcode($1, &$2); }
    	IMULB	DX
    	IMULW	DX, BX
    	IMULL	R11, R12
    	IMULQ	foo+4(SB), R11
    
    // LTYPEXC spec8	{ outcode($1, &$2); }
    	CMPPD	X1, X2, 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 3.3K bytes
    - Viewed (0)
Back to top