Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 629 for _lifted (0.1 sec)

  1. releasenotes/notes/protocol-detection-timeout.yaml

        - Properly configured "server first" protocols will no longer have an extra 5s latency on each connection
        - Improperly configured "server first" protocols will experience connection timeouts. Please ensure you follow the steps listed in [Server First Protocols](https://preliminary.istio.io/latest/docs/ops/configuration/traffic-management/protocol-selection/#server-first-protocols)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  2. src/internal/poll/sock_cloexec_accept.go

    func accept(s int) (int, syscall.Sockaddr, string, error) {
    	ns, sa, err := Accept4Func(s, syscall.SOCK_NONBLOCK|syscall.SOCK_CLOEXEC)
    	switch err {
    	case nil:
    		return ns, sa, "", nil
    	default: // errors other than the ones listed
    		return -1, sa, "accept4", err
    	case syscall.ENOSYS: // syscall missing
    	case syscall.EINVAL: // some Linux use this instead of ENOSYS
    	case syscall.EACCES: // some Linux use this instead of ENOSYS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 03:40:42 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/isolated/IsolationSchemeTest.groovy

            then:
            result2.is(service)
    
            where:
            serviceType << [ExecOperations, FileSystemOperations, ObjectFactory, ProviderFactory]
        }
    
        def "does not expose white-listed service when it is not available in backing registry"() {
            def allServices = Mock(ServiceLookup)
            def params = Stub(SomeParams)
            _ * allServices.find(serviceType) >> null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 19:49:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/ProgressListener.java

     * @since 2.5
     */
    public interface ProgressListener {
    
        /**
         * Called when the execution of an operation progresses.
         * <p>
         * The possible progress event types are listed in {@link OperationType}'s documentation.
         *</p>
         * <p>
         * You can find out more about the operation for which progress is reported
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbNamedPipe.java

         * parameter. The pipeType parameter should be at least one of
         * the <code>PIPE_TYPE</code> flags combined with the bitwise OR
         * operator <code>|</code>. See the examples listed above.
         * 
         * @param url
         * @param pipeType
         * @param unshared
         *            whether to use an exclusive connection for this pipe
         * @param tc
         * @throws MalformedURLException
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-diff.go

    	// Deployment:istio-system:* - compare all deployments in istio-system namespace
    	// Service:*:istio-pilot - compare Services called "istio-pilot" in all namespaces.
    	selectResources string
    	// ignoreResources ignores all listed items during comparison. It uses the same list format as selectResources.
    	ignoreResources string
    	// renameResources identifies renamed resources before comparison.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    }
    
    // CheckDir reports whether the files in dir satisfy the name and size
    // constraints listed in the package documentation. The returned [CheckedFiles]
    // record contains lists of valid, invalid, and omitted files. If a directory is
    // omitted (for example, a nested module or vendor directory), it will appear in
    // the omitted list, but its files won't be listed.
    //
    // CheckDir returns an error if it encounters an I/O error or if the returned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

    //
    // Returns:
    //   A quantized multiplier, represented as a pair of integers: the quantized
    //   multiplier and the shift amount. The shift amount is the number of bits
    //   that the quantized multiplier should be shifted to the right before being
    //   used.
    QuantizedMultiplier QuantizeMultiplier(double double_multiplier) {
      if (double_multiplier < 1e-6) {
        return {0, 0};
      }
    
      int32_t shift;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/maven/MavenVersionLister.java

                        hasResult = true;
                    } catch (MissingResourceException e) {
                        // Continue
                    }
                }
            }
            if (hasResult) {
                result.listed(versions);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. hack/verify-conformance-requirements.sh

    then
      errors+=( "${failedLint}" )
    fi
    
    # Check to be sure all the packages that should pass lint are.
    if [ ${#errors[@]} -eq 0 ]; then
      echo 'Congratulations!  All e2e test source files have been linted for conformance requirements.'
    else
      {
        echo "Errors from lint:"
        for err in "${errors[@]}"; do
          echo "$err"
        done
        echo
        echo 'Please review the above warnings.'
        echo
      } >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top