Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Walls (0.18 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      }
    
      @Test
      fun nonStandardAuthenticationScheme() {
        val calls = authCallsForHeader("WWW-Authenticate: Foo")
        assertThat(calls).isEqualTo(emptyList<String>())
      }
    
      @Test
      fun nonStandardAuthenticationSchemeWithRealm() {
        val calls = authCallsForHeader("WWW-Authenticate: Foo realm=\"Bar\"")
        assertThat(calls.size).isEqualTo(0)
      }
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      private static Function<Integer, Integer> newOneTimeExceptionThrower() {
        return new Function<Integer, Integer>() {
          int calls = 0;
    
          @Override
          public Integer apply(Integer from) {
            if (++calls > 1) {
              fail();
            }
            throw new MyRuntimeException();
          }
        };
      }
    
      @J2ktIncompatible
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      private static Function<Integer, Integer> newOneTimeExceptionThrower() {
        return new Function<Integer, Integer>() {
          int calls = 0;
    
          @Override
          public Integer apply(Integer from) {
            if (++calls > 1) {
              fail();
            }
            throw new MyRuntimeException();
          }
        };
      }
    
      @J2ktIncompatible
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    No <a href="#Run_time_panics">run-time panic</a> occurs in this case.
    </p>
    
    
    <h3 id="Calls">Calls</h3>
    
    <p>
    Given an expression <code>f</code> of function type
    <code>F</code>,
    </p>
    
    <pre>
    f(a1, a2, … an)
    </pre>
    
    <p>
    calls <code>f</code> with arguments <code>a1, a2, … an</code>.
    Except for one special case, arguments must be single-valued expressions
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

        static final int O_TRUNC  = 0x0040;
    
        // share access
    /**
     * When specified as the <tt>shareAccess</tt> constructor parameter,
     * other SMB clients (including other threads making calls into jCIFS)
     * will not be permitted to access the target file and will receive "The
     * file is being accessed by another process" message.
     */
        public static final int FILE_NO_SHARE     = 0x00;
    /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  6. cmd/object-handlers_test.go

    	if err != nil {
    		t.Fatalf("MinIO %s: Failed to create an anonymous request for %s/%s: <ERROR> %v",
    			instanceType, bucketName, objectName, err)
    	}
    
    	// ExecObjectLayerAPIAnonTest - Calls the HTTP API handler using the anonymous request, validates the ErrAccessDeniedResponse,
    	// sets the bucket policy using the policy statement generated from `getWriteOnlyObjectStatement` so that the
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    		Help:      "Distribution of time to first byte across API calls",
    		Type:      gaugeMetric,
    	}
    }
    
    func getBucketTTFBDistributionMD() MetricDescription {
    	return MetricDescription{
    		Namespace: bucketMetricNamespace,
    		Subsystem: ttfbSubsystem,
    		Name:      ttfbDistribution,
    		Help:      "Distribution of time to first byte across API calls per bucket",
    		Type:      gaugeMetric,
    	}
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    	objectEncryption = objectEncryption || crypto.IsSourceEncrypted(srcInfo.UserDefined)
    
    	var compressMetadata map[string]string
    	// No need to compress for remote etcd calls
    	// Pass the decompressed stream to such calls.
    	isDstCompressed := isCompressible(r.Header, dstObject) &&
    		length > minCompressibleSize &&
    		!isRemoteCopyRequired(ctx, srcBucket, dstBucket, objectAPI) && !cpSrcDstSame && !objectEncryption
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        /**
         * Starts closing all closeable objects captured during the {@link ClosingFuture}'s asynchronous
         * operation on the {@link Executor}s specified by calls to {@link
         * DeferredCloser#eventuallyClose(Object, Executor)}.
         *
         * <p>If any such calls specified {@link MoreExecutors#directExecutor()}, those objects will be
         * closed synchronously.
         *
         * <p>Idempotent: objects will be closed at most once.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/callback.go

    var callbackMutex sync.Mutex
    var callbackToken int
    var callbackFuncs = make(map[int]func())
    
    // nestedCall calls into C, back into Go, and finally to f.
    func nestedCall(f func()) {
    	// callback(x) calls goCallback(x)
    	callbackMutex.Lock()
    	callbackToken++
    	i := callbackToken
    	callbackFuncs[i] = f
    	callbackMutex.Unlock()
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
Back to top