Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 706 for remSign (0.14 sec)

  1. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

       * waiting for the running calls to complete.
       *
       * If more than [maxRequests] requests are in flight when this is invoked, those requests will
       * remain in flight.
       */
      var maxRequests = 64
        get() = this.withLock { field }
        set(maxRequests) {
          require(maxRequests >= 1) { "max < 1: $maxRequests" }
          this.withLock {
            field = maxRequests
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/net/http/fs.go

    			break
    		}
    		if im[0] == ',' {
    			im = im[1:]
    			continue
    		}
    		if im[0] == '*' {
    			return condTrue
    		}
    		etag, remain := scanETag(im)
    		if etag == "" {
    			break
    		}
    		if etagStrongMatch(etag, w.Header().get("Etag")) {
    			return condTrue
    		}
    		im = remain
    	}
    
    	return condFalse
    }
    
    func checkIfUnmodifiedSince(r *Request, modtime time.Time) condResult {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/os/removeall_noat.go

    		// fail silently to retain compatibility with previous behavior
    		// of RemoveAll. See issue 28830.
    		return nil
    	}
    
    	// The rmdir system call permits removing "." on Plan 9,
    	// so we don't permit it to remain consistent with the
    	// "at" implementation of RemoveAll.
    	if endsWithDot(path) {
    		return &PathError{Op: "RemoveAll", Path: path, Err: syscall.EINVAL}
    	}
    
    	// Simple case: if Remove works, we're done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. src/io/multi.go

    			mr.readers[0] = eofReader{} // permit earlier GC
    			mr.readers = mr.readers[1:]
    		}
    		if n > 0 || err != EOF {
    			if err == EOF && len(mr.readers) > 0 {
    				// Don't return EOF yet. More readers remain.
    				err = nil
    			}
    			return
    		}
    	}
    	return 0, EOF
    }
    
    func (mr *multiReader) WriteTo(w Writer) (sum int64, err error) {
    	return mr.writeToWithBuffer(w, make([]byte, 1024*32))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. docs/tls/kubernetes/README.md

    ```sh
    kubectl get secrets
    ```
    
    You should see a secret named `tls-ssl-minio`.
    
    ## 3. Update deployment yaml file
    
    Whether you are planning to use Kubernetes StatefulSet or Kubernetes Deployment, the steps remain the same.
    
    If you're using certificates provided by a CA, add the below section in your yaml file under `spec.volumes[]`
    
    ```yaml
        volumes:
          - name: secret-volume
            secret:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. test/typeparam/mapsimp.dir/a.go

    func Filter[K comparable, V any](m map[K]V, f func(K, V) bool) {
    	for k, v := range m {
    		if !f(k, v) {
    			delete(m, k)
    		}
    	}
    }
    
    // TransformValues applies f to each value in m. The keys remain unchanged.
    func TransformValues[K comparable, V any](m map[K]V, f func(V) V) {
    	for k, v := range m {
    		m[k] = f(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 24 22:17:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/GradleModuleMetadataCompatibilityConverter.java

            // This code path will always be a no-op following the changes in DefaultImmutableAttributesFactory
            // However this code will have to remain forever while the other one should be removed at some point (Gradle 7.0?)
            for (MutableComponentVariant variant : metaDataFromResource.getMutableVariants()) {
                ImmutableAttributes attributes = variant.getAttributes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

    }
    
    // Quantization spec per each component designated to be quantized.
    // Components whose QuantizationComponentSpec is not specified will not be
    // quantized, and remain f32.
    // NEXT ID: 7
    message QuantizationComponentSpec {
      // NEXT ID: 4
      enum QuantizationComponent {
        COMPONENT_UNSPECIFIED = 0;
        COMPONENT_ACTIVATION = 1;
        COMPONENT_WEIGHT = 2;
        COMPONENT_BIAS = 3;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            expect: "unrealized elements remain as such"
            container.index.asMap().size() == 2
            container.index.pendingAsMap.size() == 2
    
            when: "filter the list via the `named` method"
            def filtered = container.named { it.contains("2") }
    
            then: "unrealized elements remain as such"
            container.index.asMap().size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_downup_artifact.txt

    stdout '^example.com/d v0.1.0 '
    ! stdout '^example.com/e '
    
    # b is imported by a, so the -u flag would normally upgrade it to v0.2.0.
    # However, that would conflict with the explicit c@v0.1.0 constraint,
    # so b must remain at v0.1.0.
    #
    # If we're not careful, we might temporarily add b@v0.2.0 and pull in its
    # upgrades of module d and addition of module e, which are not relevant to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top