Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for opcode (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	r0, _, e1 := syscall.Syscall(procGetProcAddress.Addr(), 2, uintptr(module), ordinal, 0)
    	proc = uintptr(r0)
    	if proc == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func Exit(code int) { ExitProcess(uint32(code)) }
    
    func makeInheritSa() *SecurityAttributes {
    	var sa SecurityAttributes
    	sa.Length = uint32(unsafe.Sizeof(sa))
    	sa.InheritHandle = 1
    	return &sa
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    }
    
    var _ runtime.Decoder = schemaCoercingDecoder{}
    
    func (d schemaCoercingDecoder) Decode(data []byte, defaults *schema.GroupVersionKind, into runtime.Object) (runtime.Object, *schema.GroupVersionKind, error) {
    	var decodingStrictErrs []error
    	obj, gvk, err := d.delegate.Decode(data, defaults, into)
    	if err != nil {
    		decodeStrictErr, ok := runtime.AsStrictDecodingError(err)
    		if !ok || obj == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/net/url/url_test.go

    	u, err := Parse("https://www.google.com/x?y=z")
    	if err != nil {
    		t.Fatal(err)
    	}
    	var w bytes.Buffer
    	err = gob.NewEncoder(&w).Encode(u)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	u1 := new(URL)
    	err = gob.NewDecoder(&w).Decode(u1)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if u1.String() != u.String() {
    		t.Errorf("json decoded to: %s\nwant: %s\n", u1, u)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    	// 8. Check utf8.RuneSelf and utf8.MaxRune encoding
    	encode := func(r rune) rune {
    		switch r {
    		case utf8.RuneSelf:
    			return unicode.MaxRune
    		case unicode.MaxRune:
    			return utf8.RuneSelf
    		}
    		return r
    	}
    	s := string(rune(utf8.RuneSelf)) + string(utf8.MaxRune)
    	r := string(utf8.MaxRune) + string(rune(utf8.RuneSelf)) // reverse of s
    	m = Map(encode, s)
    	if m != r {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	}
    	name := sn[5:] // could also decode from Type.string
    
    	sdie := d.find(name)
    	if sdie != 0 {
    		return sdie
    	}
    
    	gtdwSym := d.newtype(gotype)
    	d.tdmap[gotype] = loader.Sym(gtdwSym.Sym.(dwSym))
    	return loader.Sym(gtdwSym.Sym.(dwSym))
    }
    
    func (d *dwctxt) newtype(gotype loader.Sym) *dwarf.DWDie {
    	sn := d.ldr.SymName(gotype)
    	name := sn[5:] // could also decode from Type.string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    				Port:     80,
    				Protocol: simulation.TCP,
    				TLS:      simulation.TLS,
    				CallMode: simulation.CallModeInbound,
    			},
    			Disabled: simulation.Result{
    				// TLS is not terminated, so we will attempt to decode as HTTP and fail
    				Error: simulation.ErrProtocolError,
    			},
    			Permissive: simulation.Result{
    				// This could also be a protocol error. In the current implementation, we choose not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. cmd/admin-handlers-users.go

    	for name, p := range policies {
    		_, err = json.Marshal(p)
    		if err != nil {
    			adminLogIf(ctx, err)
    			continue
    		}
    		newPolicies[name] = p
    	}
    	if err = json.NewEncoder(w).Encode(newPolicies); err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    }
    
    // ListCannedPolicies - GET /minio/admin/v3/list-canned-policies
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	if obj, ok := a.patch.(map[string]interface{}); ok {
    		patch.Object = obj
    	} else if str, ok := a.patch.(string); ok {
    		str = FixTabsOrDie(str)
    		if err := utilyaml.NewYAMLOrJSONDecoder(strings.NewReader(str), len(str)).Decode(&patch.Object); err != nil {
    			return err
    		}
    	} else {
    		return fmt.Errorf("invalid patch type: %T", a.patch)
    	}
    
    	patch.SetKind(kind)
    	patch.SetAPIVersion(a.gvr.GroupVersion().String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

                        alreadyEncoded = true,
                      )
                  }
                  pos = componentDelimiterOffset + 1
                }
    
                -1, '/'.code, '\\'.code, '?'.code, '#'.code -> {
                  // Host info precedes.
                  val portColonOffset = portColonOffset(input, pos, componentDelimiterOffset)
                  if (portColonOffset + 1 < componentDelimiterOffset) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    if (!queryFieldConfig.isFacetField(f)) {
                        throw new SearchQueryException("Invalid facet field: " + f);
                    }
                    final String encodedField = BaseEncoding.base64().encode(f.getBytes(StandardCharsets.UTF_8));
                    final TermsAggregationBuilder termsBuilder =
                            AggregationBuilders.terms(Constants.FACET_FIELD_PREFIX + encodedField).field(f);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top