Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,233 for indication (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    As the number of exposed properties grows, you should introduce a nested, more expressive structure.
    
    The following code snippet adds a new configuration block named `siteInfo` as part of the extension.
    This provides a stronger indication of what those properties mean:
    
    ====
    include::sample[dir="snippets/developingPlugins/pluginExtension/kotlin",files="build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	}
    	return false
    }
    
    func isStreamReset(err error) bool {
    	if err == nil {
    		return false
    	}
    	if urlErr, ok := err.(*url.Error); ok {
    		// Sadly, the client does not receive a more specific indication
    		// of stream reset.
    		return strings.Contains(urlErr.Err.Error(), "INTERNAL_ERROR")
    	}
    	return false
    }
    
    func TestGetRequestWaitContext(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. src/math/big/int.go

    }
    
    // IsUint64 reports whether x can be represented as a uint64.
    func (x *Int) IsUint64() bool {
    	return !x.neg && len(x.abs) <= 64/_W
    }
    
    // Float64 returns the float64 value nearest x,
    // and an indication of any rounding that occurred.
    func (x *Int) Float64() (float64, Accuracy) {
    	n := x.abs.bitLen() // NB: still uses slow crypto impl!
    	if n == 0 {
    		return 0.0, Exact
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_VS     uint32 = 0xE7F7 // 	VRR-c	VECTOR SUBTRACT
    	op_VSCBI  uint32 = 0xE7F5 // 	VRR-c	VECTOR SUBTRACT COMPUTE BORROW INDICATION
    	op_VSBCBI uint32 = 0xE7BD // 	VRR-d	VECTOR SUBTRACT WITH BORROW COMPUTE BORROW INDICATION
    	op_VSBI   uint32 = 0xE7BF // 	VRR-d	VECTOR SUBTRACT WITH BORROW INDICATION
    	op_VSUMG  uint32 = 0xE765 // 	VRR-c	VECTOR SUM ACROSS DOUBLEWORD
    	op_VSUMQ  uint32 = 0xE767 // 	VRR-c	VECTOR SUM ACROSS QUADWORD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// NegotiatedProtocolIsMutual used to indicate a mutual NPN negotiation.
    	//
    	// Deprecated: this value is always true.
    	NegotiatedProtocolIsMutual bool
    
    	// ServerName is the value of the Server Name Indication extension sent by
    	// the client. It's available both on the server and on the client side.
    	ServerName string
    
    	// PeerCertificates are the parsed certificates sent by the peer, in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    // versions that have already been resolved. If there is only one (unique)
    // remaining candidate, disambiguate returns that candidate, along with
    // an indication of whether that result interprets cs.path as a package
    //
    // Note: we're only doing very simple disambiguation here. The goal is to
    // reproduce the user's intent, not to find a solution that a human couldn't.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    			// we use EABI on linux/arm, freebsd/arm, netbsd/arm.
    			if ctxt.HeadType == objabi.Hlinux || ctxt.HeadType == objabi.Hfreebsd || ctxt.HeadType == objabi.Hnetbsd {
    				// We set a value here that makes no indication of which
    				// float ABI the object uses, because this is information
    				// used by the dynamic linker to compare executables and
    				// shared libraries -- so it only matters for cgo calls, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * username for example:
     * <tt>
     * String username = f.getPrincipal().getName();
     * </tt>
     * The <tt>Principal</tt> object returned will never be <tt>null</tt>
     * however the username can be <tt>null</tt> indication anonymous
     * credentials were used (e.g. some IPC$ services).
     */
    
        public Principal getPrincipal() {
            return auth;
        }
    
    /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.api.invocation.Gradle.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top