Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for alocale (0.12 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    		switch as {
    		case ABGTZ, ABLEZ:
    			rd, rj = rj, rd
    		case ABFPT, ABFPF:
    			width = 21
    			// FCC0 is the implicit source operand, now that we
    			// don't register-allocate from the FCC bank.
    			rd = REG_FCC0
    		case ABEQ, ABNE:
    			if rd == 0 || rd == REGZERO || rj == REGZERO {
    				// BEQZ/BNEZ can be encoded with 21-bit offsets.
    				width = 21
    				as = -as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    kind: Config
    users:
    - name: kubelet
      user:
        client-certificate: KUBELET_CERT_PATH
        client-key: KUBELET_KEY_PATH
    clusters:
    - name: local
      cluster:
        server: https://APISERVER_ADDRESS
        certificate-authority: CA_FILE_PATH
    contexts:
    - context:
        cluster: local
        user: kubelet
      name: service-account-context
    current-context: service-account-context'.`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // These commands are KEYCTL_DESCRIBE and KEYCTL_GET_SECURITY.
    func KeyctlString(cmd int, id int) (string, error) {
    	// We must loop as the string data may change in between the syscalls.
    	// We could allocate a large buffer here to reduce the chance that the
    	// syscall needs to be called twice; however, this is unnecessary as
    	// the performance loss is negligible.
    	var buffer []byte
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    			); ok {
    				return drs
    			}
    		}
    	} else {
    		// If this is a namespace local DR in the same namespace, this must be meant for this proxy, so we do not
    		// need to worry about overriding other DRs with *.local type rules here. If we ignore this, then exportTo=. in
    		// root namespace would always be ignored
    		if _, drs, ok := MostSpecificHostMatch(service.Hostname,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    				}
    				ld.error(fmt.Errorf("%s loaded from %v,\n\tbut go %s would fail to locate it in %s", pkg.stackText(), pkg.mod, compatVersion, selected))
    			} else {
    				if ambiguous := (*AmbiguousImportError)(nil); errors.As(mismatch.err, &ambiguous) {
    					// TODO: Is this check needed?
    				}
    				ld.error(fmt.Errorf("%s loaded from %v,\n\tbut go %s would fail to locate it:\n\t%v", pkg.stackText(), pkg.mod, compatVersion, mismatch.err))
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/os/os_test.go

    	d := t.TempDir()
    	f, err := Create(filepath.Join(d, "whiteboard.txt"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer f.Close()
    	allocs := testing.AllocsPerRun(100, func() {
    		f.WriteString("I will not allocate when passed a string longer than 32 bytes.\n")
    	})
    	if allocs != 0 {
    		t.Errorf("expected 0 allocs for File.WriteString, got %v", allocs)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	}
    	ms.data = ms.data[:siz]
    }
    
    // Convert a local index to a global index.
    func (l *Loader) toGlobal(r *oReader, i uint32) Sym {
    	return r.syms[i]
    }
    
    // Convert a global index to a local index.
    func (l *Loader) toLocal(i Sym) (*oReader, uint32) {
    	return l.objs[l.objSyms[i].objidx], l.objSyms[i].s
    }
    
    // Resolve a local symbol reference. Return global index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    -default-device : The default device to assign.
    ```
    ### `-tf-stack-ops-decomposition`
    
    _Decompose stack operations into local variable operations. Needs static shapes._
    
    A pass that converts stack operations to tensor operations and read/assign
    ops on local variables. A later resource lifting pass can further remove the
    local variables.
    
    This pass requires that the full shape of the stack can be inferred: 1) the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			// other than try to determine a Go representation.
    			tt := *t
    			tt.C = &TypeRepr{"%s %s", []interface{}{dt.Kind, tag}}
    			// We don't know what the representation of this struct is, so don't let
    			// anyone allocate one on the Go side. As a side effect of this annotation,
    			// pointers to this type will not be considered pointers in Go. They won't
    			// get writebarrier-ed or adjusted during a stack copy. This should handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top