Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 257 for Closest (0.21 sec)

  1. src/slices/zsortanyfunc.go

    	// Avoid unnecessary recursions of symMerge
    	// by direct insertion of data[a] into data[m:b]
    	// if data[a:m] only contains one element.
    	if m-a == 1 {
    		// Use binary search to find the lowest index i
    		// such that data[i] >= data[a] for m <= i < b.
    		// Exit the search loop with i == b in case no such index exists.
    		i := m
    		j := b
    		for i < j {
    			h := int(uint(i+j) >> 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_test.go

    		})
    		downstream = stream(t, conn)
    		sendDownstreamWithNode(t, downstream, model.NodeMetadata{
    			Namespace:   "default",
    			InstanceIPs: []string{"1.1.1.1"},
    		})
    	})
    	t.Run("Envoy closes connection", func(t *testing.T) {
    		proxy := setupXdsProxy(t)
    		f := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    		setDialOptions(proxy, f.BufListener)
    
    		conn := setupDownstreamConnection(t, proxy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    			return groups[i].Priority >= priority
    		})
    
    		// 1. Those higher than the highest priority default to the highest priority
    		// 2. Those lower than the lowest priority default to the lowest priority
    		// 3. Those boundary priority default to the lower priority
    		// if priority of pod is:
    		//   groups[index-1].Priority <= pod priority < groups[index].Priority
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  4. apache-maven/pom.xml

        </dependency>
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-transport-file</artifactId>
        </dependency>
        <!-- HTTP/1.1, lowest priority, Java8+ (still must as some ITs force it) -->
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-transport-wagon</artifactId>
        </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         * <p>
         * Supported filters:
         * <ul>
         *     <li>"h" or "h(num)" - highest version or top list of highest ones filter</li>
         *     <li>"l" or "l(num)" - lowest version or bottom list of lowest ones filter</li>
         *     <li>"s" - contextual snapshot filter</li>
         *     <li>"e(G:A:V)" - predicate filter (leaves out G:A:V from range, if hit, V can be range)</li>
         * </ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/StatsAccumulator.java

       * @throws IllegalStateException if the dataset is empty or contains a single value
       */
      public final double sampleStandardDeviation() {
        return Math.sqrt(sampleVariance());
      }
    
      /**
       * Returns the lowest value in the dataset. The count must be non-zero.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains {@link Double#NaN} then the result is {@link Double#NaN}. If it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/TcpConnectorTest.groovy

            then:
            ConnectException e = thrown()
            e.message.startsWith "Could not connect to server ${acceptor.address}."
            e.cause instanceof java.net.ConnectException
        }
    
        def "server closes connection when action fails"() {
            Action action = Mock()
    
            given:
            _ * action.execute(_) >> {
                throw new RuntimeException()
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. src/net/http/clientserver_test.go

    		defer c.Close()
    		fmt.Fprintln(c, "some bogus crap")
    	}))
    
    	closes := 0
    	res, err := cst.c.Post(cst.ts.URL, "text/plain", countCloseReader{&closes, strings.NewReader("hello")})
    	if err == nil {
    		res.Body.Close()
    		t.Fatal("expected an error to be returned from Post")
    	}
    	if closes != 1 {
    		t.Errorf("closes = %d; want 1", closes)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/os/file_plan9.go

    		}
    	}
    
    	return NewFile(uintptr(fd), name), nil
    }
    
    func openDirNolog(name string) (*File, error) {
    	return openFileNolog(name, O_RDONLY, 0)
    }
    
    // Close closes the File, rendering it unusable for I/O.
    // On files that support SetDeadline, any pending I/O operations will
    // be canceled and return immediately with an ErrClosed error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. src/slices/zsortordered.go

    	// Avoid unnecessary recursions of symMerge
    	// by direct insertion of data[a] into data[m:b]
    	// if data[a:m] only contains one element.
    	if m-a == 1 {
    		// Use binary search to find the lowest index i
    		// such that data[i] >= data[a] for m <= i < b.
    		// Exit the search loop with i == b in case no such index exists.
    		i := m
    		j := b
    		for i < j {
    			h := int(uint(i+j) >> 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top