Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 716 for aBinary (0.12 sec)

  1. src/encoding/binary/binary.go

    	)
    }
    
    func (bigEndian) String() string { return "BigEndian" }
    
    func (bigEndian) GoString() string { return "binary.BigEndian" }
    
    func (nativeEndian) String() string { return "NativeEndian" }
    
    func (nativeEndian) GoString() string { return "binary.NativeEndian" }
    
    // Read reads structured binary data from r into data.
    // Data must be a pointer to a fixed-size value or a slice
    // of fixed-size values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

    // (unlike the rest), since this is the primary use case for such ops and
    // verification of shapes and broadcasts is desired.
    // RUN: tf-opt "-xla-legalize-tf=legalize-chlo=true" -canonicalize %s | FileCheck %s
    // RUN: tf-opt "-xla-legalize-tf=legalize-chlo=false" %s | FileCheck --check-prefix CHLO %s
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/unicode/letter_test.go

    					linear(tab, uint16(j))
    				}
    			}
    		}
    		bbinary := func(b *testing.B) {
    			tab := tab
    			max := n*5 + 20
    			for i := 0; i < b.N; i++ {
    				for j := 0; j <= max; j++ {
    					binary(tab, uint16(j))
    				}
    			}
    		}
    		bmlinear := testing.Benchmark(blinear)
    		bmbinary := testing.Benchmark(bbinary)
    		fmt.Printf("n=%d: linear=%d binary=%d\n", n, bmlinear.NsPerOp(), bmbinary.NsPerOp())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. src/encoding/gob/type.go

    	externalEnc int          // xGob, xBinary, or xText
    	externalDec int          // xGob, xBinary, or xText
    	encIndir    int8         // number of indirections to reach the receiver type; may be negative
    	decIndir    int8         // number of indirections to reach the receiver type; may be negative
    }
    
    // externalEncoding bits
    const (
    	xGob    = 1 + iota // GobEncoder or GobDecoder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

            private final NativeBinarySpec binary;
    
            public BinaryLibs(NativeBinarySpec binary) {
                this.binary = binary;
            }
    
            @Override
            public List<FileCollection> call() throws Exception {
                List<FileCollection> runtimeFiles = new ArrayList<>();
                for (NativeDependencySet nativeDependencySet : binary.getLibs()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

        private final NativeBinarySpecInternal binary;
    
        public NativeSpecVisualStudioTargetBinary(NativeBinarySpec binary) {
            this.binary = (NativeBinarySpecInternal) binary;
        }
    
        @Override
        public String getProjectPath() {
            return binary.getProjectPath();
        }
    
        @Override
        public String getComponentName() {
            return binary.getComponent().getName();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryIntegrationTest.groovy

                                assert binary.displayName == "SampleBinary 'sampleBinary'"
                                assert binary.toString() == binary.displayName
                            }
                        }
                    }
                }
                apply plugin: Rules
    '''
    
            then:
            succeeds "checkModel"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. src/internal/xcoff/file.go

    	case U802TOCMAGIC:
    		fhdr := new(FileHeader32)
    		if err := binary.Read(sr, binary.BigEndian, fhdr); err != nil {
    			return nil, err
    		}
    		nscns = fhdr.Fnscns
    		symptr = uint64(fhdr.Fsymptr)
    		nsyms = fhdr.Fnsyms
    		opthdr = fhdr.Fopthdr
    		hdrsz = FILHSZ_32
    	case U64_TOCMAGIC:
    		fhdr := new(FileHeader64)
    		if err := binary.Read(sr, binary.BigEndian, fhdr); err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

                    task.getWorkingDirectory().set(binary.getInstallDirectory());
                });
                binary.getRunTask().set(testingTask);
    
                configureTestSuiteBuildingTasks(project, binary);
                configureTestSuiteWithTestedComponentWhenAvailable(project, testComponent, binary);
            });
    
            project.afterEvaluate(p -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                        linkTask.getTargetPlatform().set(binary.getTargetPlatform());
                        linkTask.getLinkedFile().set(binary.getSharedLibraryFile());
                        linkTask.getInstallName().set(binary.getSharedLibraryFile().getName());
                        linkTask.getLinkerArgs().set(binary.getLinker().getArgs());
                        linkTask.getImportLibrary().set(binary.getSharedLibraryLinkFile());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
Back to top