Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 152 for strref (0.2 sec)

  1. src/crypto/x509/internal/macos/security.go

    func SecTrustEvaluateWithError(trustObj CFRef) (int, error) {
    	var errRef CFRef
    	ret := syscall(abi.FuncPCABI0(x509_SecTrustEvaluateWithError_trampoline), uintptr(trustObj), uintptr(unsafe.Pointer(&errRef)), 0, 0, 0, 0)
    	if int32(ret) != 1 {
    		errStr := CFErrorCopyDescription(errRef)
    		err := errors.New(CFStringToString(errStr))
    		errCode := CFErrorGetCode(errRef)
    		CFRelease(errRef)
    		CFRelease(errStr)
    		return errCode, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/cross-namespace-routing/store-route.yaml

    #$ - site-src/guides/multiple-ns.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: store
      namespace: store-ns
    spec:
      parentRefs:
      - name: shared-gateway
        namespace: infra-ns
      rules:
      - matches:
        - path:
            value: /store
        backendRefs:
        - name: store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 333 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/testdata/libfuzzer2.c

    #include <stddef.h>
    
    #include "libfuzzer2.h"
    
    int LLVMFuzzerTestOneInput(char *data, size_t size) {
     	if (size > 0 && data[0] == 'H')
    		if (size > 1 && data[1] == 'I')
    			if (size > 2 && data[2] == '!')
    				FuzzMe(data, size);
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 240 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/store-another.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 189 bytes
    - Viewed (0)
  5. src/mime/multipart/formdata.go

    // ReadForm parses an entire multipart message whose parts have
    // a Content-Disposition of "form-data".
    // It stores up to maxMemory bytes + 10MB (reserved for non-file parts)
    // in memory. File parts which can't be stored in memory will be stored on
    // disk in temporary files.
    // It returns [ErrMessageTooLarge] if all non-file parts can't be stored in
    // memory.
    func (r *Reader) ReadForm(maxMemory int64) (*Form, error) {
    	return r.readForm(maxMemory)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/cmd/internal/goobj/funcinfo.go

    		a.InlTree[i].Write(w)
    	}
    }
    
    // FuncInfoLengths is a cache containing a roadmap of offsets and
    // lengths for things within a serialized FuncInfo. Each length field
    // stores the number of items (e.g. files, inltree nodes, etc), and the
    // corresponding "off" field stores the byte offset of the start of
    // the items in question.
    type FuncInfoLengths struct {
    	NumFile     uint32
    	FileOff     uint32
    	NumInlTree  uint32
    	InlTreeOff  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/typeparam.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgotest
    
    // #include <stddef.h>
    import "C"
    
    func generic[T, U any](t T, u U) {}
    
    func useGeneric() {
    	const zero C.size_t = 0
    
    	generic(zero, zero)
    	generic[C.size_t, C.size_t](0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 353 bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/Resource.java

    import org.gradle.api.Describable;
    
    /**
     * Represents some resource that may have content.
     *
     * <p>This type is currently pretty much empty. It's here as a place to extract and reuse stuff from the various subtypes, which all stared off as separate hierarchies.
     */
    public interface Resource extends Describable {
        /**
         * Returns a display name for this resource. This can be used in log and error messages.
         *
         * @return the display name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/runtime/mcheckmark.go

    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // A checkmarksMap stores the GC marks in "checkmarks" mode. It is a
    // per-arena bitmap with a bit for every word in the arena. The mark
    // is stored on the bit corresponding to the first word of the marked
    // allocation.
    type checkmarksMap struct {
    	_ sys.NotInHeap
    	b [heapArenaBytes / goarch.PtrSize / 8]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcarchive/testdata/main6.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that using the Go profiler in a C program does not crash.
    
    #include <stddef.h>
    #include <sys/time.h>
    
    #include "libgo6.h"
    
    int main(int argc, char **argv) {
    	struct timeval tvstart, tvnow;
    	int diff;
    
    	gettimeofday(&tvstart, NULL);
    
    	go_start_profile();
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 830 bytes
    - Viewed (0)
Back to top