Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 32769 (0.05 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	ADD $65536, R6                  // 3cc60001
    	ADD $65536, R6, R7              // 3ce60001
    	ADD $-32767, R5                 // 38a58001
    	ADD $-32767, R5, R4             // 38858001
    	ADD $-32768, R6                 // 38c68000
    	ADD $-32768, R6, R5             // 38a68000
    	// Hex constant 0xFFFFFFFE00000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    	DISPATCH(runtime·call524288, 524288)
    	DISPATCH(runtime·call1048576, 1048576)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. pkg/apis/networking/validation/validation_test.go

    			),
    		),
    		"endPort defined with named/string port": makeNetworkPolicyCustom(
    			setEgressToNamespaceSelector,
    			setEgressPorts(
    				makePort(&protocolUDP, intstr.FromString("dns"), 32768),
    				makePort(nil, intstr.FromInt32(32000), 32768),
    			),
    		),
    		"endPort defined without port defined": makeNetworkPolicyCustom(
    			setEgressToNamespaceSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  4. src/time/time.go

    		offsetMin = -1
    	} else {
    		_, offset := t.Zone()
    		if offset%60 != 0 {
    			version = timeBinaryVersionV2
    			offsetSec = int8(offset % 60)
    		}
    
    		offset /= 60
    		if offset < -32768 || offset == -1 || offset > 32767 {
    			return nil, errors.New("Time.MarshalBinary: unexpected zone offset")
    		}
    		offsetMin = int16(offset)
    	}
    
    	sec := t.sec()
    	nsec := t.nsec()
    	enc := []byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64.s

    	MSR	R13, ZCR_EL1                       // 0d1218d5
    	MRS	ZCR_EL1, R23                       // 171238d5
    	MSR	R17, ZCR_EL1                       // 111218d5
    	SYS	$32768, R1                         // 018008d5
    	SYS	$32768                             // 1f8008d5
    
    // TLBI instruction
    	TLBI	VMALLE1IS                          // 1f8308d5
    	TLBI	VMALLE1                            // 1f8708d5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	os.Setenv("GOPPC64", goppc64)
    	os.Setenv("GORISCV64", goriscv64)
    	os.Setenv("GOROOT", goroot)
    
    	// Set GOBIN to GOROOT/bin. The meaning of GOBIN has drifted over time
    	// (see https://go.dev/issue/3269, https://go.dev/cl/183058,
    	// https://go.dev/issue/31576). Since we want binaries installed by 'dist' to
    	// always go to GOROOT/bin anyway.
    	os.Setenv("GOBIN", gorootBin)
    
    	// Make the environment more predictable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // message is a human readable message indicating details about the transition.
      // This may be an empty string.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:MaxLength=32768
      optional string message = 6;
    }
    
    // CreateOptions may be provided when creating an API object.
    message CreateOptions {
      // When present, indicates that modifications should not be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // message is a human readable message indicating details about the transition.
      // This may be an empty string.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:MaxLength=32768
      optional string message = 6;
    }
    
    // CreateOptions may be provided when creating an API object.
    message CreateOptions {
      // When present, indicates that modifications should not be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// message is a human readable message indicating details about the transition.
    	// This may be an empty string.
    	// +required
    	// +kubebuilder:validation:Required
    	// +kubebuilder:validation:MaxLength=32768
    	Message string `json:"message" protobuf:"bytes,6,opt,name=message"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155\tc-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351\tc-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479\tc0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421\tc-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
Back to top