Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 163 for Printer (1.42 sec)

  1. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.APIGroups = *(*[]string)(unsafe.Pointer(&in.APIGroups))
    	out.Resources = *(*[]string)(unsafe.Pointer(&in.Resources))
    	out.ClusterScope = in.ClusterScope
    	out.Namespaces = *(*[]string)(unsafe.Pointer(&in.Namespaces))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/v1beta1/zz_generated.conversion.go

    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.APIGroups = *(*[]string)(unsafe.Pointer(&in.APIGroups))
    	out.Resources = *(*[]string)(unsafe.Pointer(&in.Resources))
    	out.ClusterScope = in.ClusterScope
    	out.Namespaces = *(*[]string)(unsafe.Pointer(&in.Namespaces))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/v1beta2/zz_generated.conversion.go

    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.APIGroups = *(*[]string)(unsafe.Pointer(&in.APIGroups))
    	out.Resources = *(*[]string)(unsafe.Pointer(&in.Resources))
    	out.ClusterScope = in.ClusterScope
    	out.Namespaces = *(*[]string)(unsafe.Pointer(&in.Namespaces))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    func (sa *SockaddrBth) sockaddr() (unsafe.Pointer, int32, error) {
    	family := AF_BTH
    	sa.raw = RawSockaddrBth{
    		AddressFamily:  *(*[2]byte)(unsafe.Pointer(&family)),
    		BtAddr:         *(*[8]byte)(unsafe.Pointer(&sa.BtAddr)),
    		Port:           *(*[4]byte)(unsafe.Pointer(&sa.Port)),
    		ServiceClassId: *(*[16]byte)(unsafe.Pointer(&sa.ServiceClassId)),
    	}
    	return unsafe.Pointer(&sa.raw), int32(unsafe.Sizeof(sa.raw)), nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // format the value.  In particular, when the value is a C string
    // (char pointer) and the other operand is an STL string object, we
    // want to format the C string as a string, since we know it is
    // compared by value with the string object.  If the value is a char
    // pointer but the other operand is not an STL string object, we don't
    // know whether the pointer is supposed to point to a NUL-terminated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.APIGroups = *(*[]string)(unsafe.Pointer(&in.APIGroups))
    	out.Resources = *(*[]string)(unsafe.Pointer(&in.Resources))
    	out.ClusterScope = in.ClusterScope
    	out.Namespaces = *(*[]string)(unsafe.Pointer(&in.Namespaces))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    	var rsa unsafe.Pointer
    	var len int32
    	if to != nil {
    		rsa, len, err = to.sockaddr()
    		if err != nil {
    			return err
    		}
    	}
    	r1, _, e1 := Syscall9(procWSASendTo.Addr(), 9, uintptr(s), uintptr(unsafe.Pointer(bufs)), uintptr(bufcnt), uintptr(unsafe.Pointer(sent)), uintptr(flags), uintptr(unsafe.Pointer(rsa)), uintptr(len), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(croutine)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // format the value.  In particular, when the value is a C string
    // (char pointer) and the other operand is an STL string object, we
    // want to format the C string as a string, since we know it is
    // compared by value with the string object.  If the value is a char
    // pointer but the other operand is not an STL string object, we don't
    // know whether the pointer is supposed to point to a NUL-terminated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. src/reflect/type.go

    //go:noescape
    func resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer
    
    // resolveTypeOff resolves an *rtype offset from a base type.
    // The (*rtype).typeOff method is a convenience wrapper for this function.
    // Implemented in the runtime package.
    //
    //go:noescape
    func resolveTypeOff(rtype unsafe.Pointer, off int32) unsafe.Pointer
    
    // resolveTextOff resolves a function pointer offset from a base type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/sync/atomic/atomic_test.go

    	addr := (*Pointer[byte])(paddr)
    	v := uintptr(unsafe.Pointer(addr.Load()))
    	new := v
    	if arch32 {
    		vlo := v & ((1 << 16) - 1)
    		vhi := v >> 16
    		if vlo != vhi {
    			t.Fatalf("Pointer: %#x != %#x", vlo, vhi)
    		}
    		new = v + 1 + 1<<16
    		if vlo == 1e4 {
    			new = 0
    		}
    	} else {
    		vlo := v & ((1 << 32) - 1)
    		vhi := v >> 32
    		if vlo != vhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
Back to top