Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 491 for Binary1 (0.12 sec)

  1. LICENSES/vendor/github.com/antlr4-go/antlr/v4/LICENSE

    Copyright (c) 2012-2023 The ANTLR Project. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    
    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    
    2. Redistributions in binary form must reproduce the above copyright
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 17:54:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     *
     * [DeclarationsInPackageProvider] first tries the [FirSymbolNamesProvider] of the analysis session's underlying FIR session, because it
     * provides symbol names from binary libraries in Standalone mode, which the Standalone declaration provider does not contain (to avoid
     * stub-indexing binary libraries). And in general, querying the symbol names provider might be faster since its sets are cached, which is
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/BSD-2-Clause.txt

    Copyright <YEAR> <COPYRIGHT HOLDER>
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    
    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    
    2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/GitAttributesGeneratorTest.groovy

    '''
            builder << '\n'
            builder << '''# These are Windows script files and should use crlf
    *.bat           text eol=crlf
    '''
            builder << '\n'
            builder << '''# Binary files should be left untouched
    *.jar           binary
    '''
            builder << '\n'
    
            return builder.toString()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 12:54:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/json_to_flatbuffer.cc

      const char* schema_path = argv[1];
      const char* json_path = argv[2];
      std::string schema;
      std::string json;
    
      const bool status =
          flatbuffers::LoadFile(schema_path, /*binary=*/false, &schema) &&
          flatbuffers::LoadFile(json_path, /*binary=*/false, &json);
      if (!status) {
        std::cerr << "couldn't load files!\n";
        return 1;
      }
    
      // parse schema first, so we can use it to parse the data after
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/go/build/deps_test.go

    	< internal/trace/event/go122;
    
    	FMT, io, internal/trace/event/go122
    	< internal/trace/version;
    
    	FMT, encoding/binary, internal/trace/version
    	< internal/trace/raw;
    
    	FMT, internal/trace/event, internal/trace/version, io, sort, encoding/binary
    	< internal/trace/internal/oldtrace;
    
    	FMT, encoding/binary, internal/trace/version, internal/trace/internal/oldtrace, container/heap, math/rand
    	< internal/trace;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	Uuid [16]byte
    }
    
    type loadCmdReader struct {
    	offset, next int64
    	f            *os.File
    	order        binary.ByteOrder
    }
    
    func (r *loadCmdReader) Next() (loadCmd, error) {
    	var cmd loadCmd
    
    	r.offset = r.next
    	if _, err := r.f.Seek(r.offset, 0); err != nil {
    		return cmd, err
    	}
    	if err := binary.Read(r.f, r.order, &cmd); err != nil {
    		return cmd, err
    	}
    	r.next = r.offset + int64(cmd.Len)
    	return cmd, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

     * [shouldBuildStubsForBinaryLibraries] is true. In Standalone mode, binary roots don't need to be specified because library symbols are
     * provided via class-based deserialization, not stub-based deserialization.
     *
     * @param binaryRoots Binary roots of the binary libraries that are specific to [project].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. Makefile

    install-race: checks build-debugging ## builds minio to $(PWD)
    	@echo "Building minio binary with -race to './minio'"
    	@GORACE=history_size=7 CGO_ENABLED=1 go build -tags kqueue,dev -race -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
    	@echo "Installing minio binary with -race to '$(GOPATH)/bin/minio'"
    	@mkdir -p $(GOPATH)/bin && cp -af $(PWD)/minio $(GOPATH)/bin/minio
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. cmd/bucket-metadata.go

    	}
    	// Read header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case bucketMetadataFormat:
    	default:
    		return b, fmt.Errorf("loadBucketMetadata: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case bucketMetadataVersion:
    	default:
    		return b, fmt.Errorf("loadBucketMetadata: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top