Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 87 for RELEASE (0.52 sec)

  1. src/go/types/api_test.go

    		{"go1.20", "go1.19", "go1.20"}, // file downgrade not permitted
    		{"go1.21", "go1.19", "go1.19"}, // file downgrade permitted (module version is >= go1.21)
    
    		// versions containing release numbers
    		// (file versions containing release numbers are considered invalid)
    		{"go1.19.0", "", "go1.19.0"},         // no file version specified
    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final Number primaryTerm = (Number) source.remove(fessConfig.getIndexFieldPrimaryTerm());
            IndexResponse response;
            try {
                if (id == null) {
                    // TODO throw Exception in next release
                    // create
                    response = client.prepareIndex().setIndex(index).setSource(new DocMap(source)).setRefreshPolicy(RefreshPolicy.IMMEDIATE)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	if value != "" {
    		return value
    	}
    	return def
    }
    
    // NOTE: This is not intended to reflect the actual Go version being used.
    // It was changed at the time of Go 1.1 release because the former User-Agent
    // had ended up blocked by some intrusion detection systems.
    // See https://codereview.appspot.com/7532043.
    const defaultUserAgent = "Go-http-client/1.1"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    // (32 or 64-bit) is for payload, whatever the tagged class.
    //
    // Note that the specific integers used to identify the
    // specific tagged classes can and will change from release
    // to release (that's why this stuff is in CF*Internal*.h),
    // as can the definition of type info vs payload above.
    //
    #if __LP64__
    #define CF_IS_TAGGED_OBJ(PTR)	((uintptr_t)(PTR) & 0x1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    gpg:               imported: 1
    
    $ gpg --no-default-keyring --keyring gradle/verification-keyring.gpg --recv-keys 6f538074ccebf35f28af9b066a0975f8b1127b83
    
    gpg: key 0729A0AFF8999A87: public key "Kotlin Release <****>" imported
    gpg: Total number processed: 1
    gpg:               imported: 1
    ----
    
    [[sec:troubleshooting-verification]]
    [[sec:dealing-verification-failure]]
    == Dealing with a verification failure
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    	ELF_NOTE_FREEBSD_DESCSZ            = 4
    	ELF_NOTE_FREEBSD_ABI_TAG           = 1
    	ELF_NOTE_FREEBSD_NOINIT_TAG        = 2
    	ELF_NOTE_FREEBSD_FEATURE_CTL_TAG   = 4
    	ELF_NOTE_FREEBSD_VERSION           = 1203000 // 12.3-RELEASE
    	ELF_NOTE_FREEBSD_FCTL_ASLR_DISABLE = 0x1
    )
    
    const ELF_NOTE_FREEBSD_NAME = "FreeBSD\x00"
    
    func elffreebsdsig(sh *ElfShdr, startva uint64, resoff uint64) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

            if ( this.treeHandle == null || !this.treeHandle.isConnected() ) {
                if ( this.treeHandle != null && this.transportContext.getConfig().isStrictResourceLifecycle() ) {
                    this.treeHandle.release();
                }
                this.treeHandle = this.treeConnection.connectWrapException(this.fileLocator);
                this.treeHandle.ensureDFSResolved();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. src/runtime/traceback.go

    // previous call to the context function. This case is called when the
    // context is no longer needed; that is, when the Go code is returning
    // to its C code caller. This permits the context function to release
    // any associated resources.
    //
    // While it would be correct for the context function to record a
    // complete a stack trace whenever it is called, and simply copy that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      explicit scoped_ptr(T* p = NULL) : ptr_(p) {}
      ~scoped_ptr() { reset(); }
    
      T& operator*() const { return *ptr_; }
      T* operator->() const { return ptr_; }
      T* get() const { return ptr_; }
    
      T* release() {
        T* const ptr = ptr_;
        ptr_ = NULL;
        return ptr;
      }
    
      void reset(T* p = NULL) {
        if (p != ptr_) {
          if (IsTrue(sizeof(T) > 0)) {  // Makes sure T is a complete type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      explicit scoped_ptr(T* p = NULL) : ptr_(p) {}
      ~scoped_ptr() { reset(); }
    
      T& operator*() const { return *ptr_; }
      T* operator->() const { return ptr_; }
      T* get() const { return ptr_; }
    
      T* release() {
        T* const ptr = ptr_;
        ptr_ = NULL;
        return ptr;
      }
    
      void reset(T* p = NULL) {
        if (p != ptr_) {
          if (IsTrue(sizeof(T) > 0)) {  // Makes sure T is a complete type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top