Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for conjunction (0.15 sec)

  1. src/main/java/jcifs/http/NtlmSsp.java

     * hashes via NTLM SSP with MSIE. It might also be used directly by servlet
     * containers to incorporate similar functionality.
     * <p>
     * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
     * described in an <A HREF="http://www.innovation.ch/java/ntlm.html">NTLM
     * Authentication Scheme for HTTP</A>.
     * <p>
     * Also, read <a
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/attributes/Attribute.java

     */
    
    package org.gradle.api.attributes;
    
    import org.apache.commons.lang.WordUtils;
    import org.gradle.api.Named;
    
    /**
     * An attribute is a named entity with a type. It is used in conjunction with a {@link AttributeContainer}
     * to provide a type safe container for attributes. This class isn't intended to store the value of an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 22 02:54:35 UTC 2019
    - 4K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateSchemeFileTask.java

     *
     * <p>This task is used in conjunction with {@link org.gradle.ide.xcode.tasks.GenerateXcodeProjectFileTask}.</p>
     *
     * @see org.gradle.ide.xcode.XcodeProject
     * @since 4.2
     */
    @Incubating
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_sumdb_file_path.txt

    env GOPATH=$WORK/gopath2
    rm go.sum
    go get -x -v golang.org/x/text@v0.3.2
    
    # Once the checksum is present in the go.sum file,
    # an empty file-based sumdb can be used in conjunction with
    # a fallback module mirror.
    grep golang.org/x/text go.sum
    env GOPATH=$WORK/gopath3
    [GOOS:windows] env GOPROXY=file:///$WORK/sumproxy
    [!GOOS:windows] env GOPROXY=file://$WORK/sumproxy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/fuse_comparisons.go

    	pc := p.Controls[0]
    	if !areMergeableInequalities(bc, pc) {
    		return false
    	}
    
    	// If the first (true) successors match then we have a disjunction (||).
    	// If the second (false) successors match then we have a conjunction (&&).
    	for i, op := range [2]Op{OpOrB, OpAndB} {
    		if p.Succs[i].Block() != b.Succs[i].Block() {
    			continue
    		}
    
    		// TODO(mundaym): should we also check the cost of executing b?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiTokenizerFactory.java

            if (settings.get(USER_DICT_PATH_OPTION) != null && settings.get(USER_DICT_RULES_OPTION) != null) {
                throw new IllegalArgumentException(
                        "It is not allowed to use [" + USER_DICT_PATH_OPTION + "] in conjunction" + " with [" + USER_DICT_RULES_OPTION + "]");
            }
            try {
                Set<String> dup = new HashSet<>();
                List<String> ruleList =
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NtlmSsp.java

     * hashes via NTLM SSP with MSIE. It might also be used directly by servlet
     * containers to incorporate similar functionality.
     * <p>
     * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
     * described in an <A HREF="http://www.innovation.ch/java/ntlm.html">NTLM
     * Authentication Scheme for HTTP</A>.  <p> Also, read <a
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  8. samples/helloworld/README.md

    and instance (hostname) when called.
    It can be used as a test service when experimenting with version routing.
    
    This service is also used to demonstrate canary deployments working in conjunction with autoscaling.
    See [Canary deployments using Istio](https://istio.io/blog/2017/0.1-canary).
    
    ## Start the helloworld service
    
    The following commands assume you have
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/runtime/memclr_amd64.s

    	SUBQ	$128, BX
    	ADDQ	$128, DI
    	CMPQ	BX, $128
    	JAE	loop_avx2_huge
    	// In the description of MOVNTDQ in [1]
    	// "... fencing operation implemented with the SFENCE or MFENCE instruction
    	// should be used in conjunction with MOVNTDQ instructions..."
    	// [1] 64-ia-32-architectures-software-developer-manual-325462.pdf
    	SFENCE
    	VMOVDQU  Y0, -32(DI)(BX*1)
    	VMOVDQU  Y0, -64(DI)(BX*1)
    	VMOVDQU  Y0, -96(DI)(BX*1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

      /**
       * Returns an object that holds a stack trace created at the moment this method is executed. This
       * should be used specifically for [java.io.Closeable] objects and in conjunction with
       * [logCloseableLeak].
       */
      open fun getStackTraceForCloseable(closer: String): Any? {
        return when {
          logger.isLoggable(Level.FINE) -> Throwable(closer) // These are expensive to allocate.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top