Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,205 for okdown (0.15 sec)

  1. android/guava/src/com/google/common/math/IntMath.java

        1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10,
        1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11,
        1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11 * 12
      };
    
      /**
       * Returns {@code n} choose {@code k}, also known as the binomial coefficient of {@code n} and
       * {@code k}, or {@link Integer#MAX_VALUE} if the result does not fit in an {@code int}.
       *
       * @throws IllegalArgumentException if {@code n < 0}, {@code k < 0} or {@code k > n}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/IntMath.java

        1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10,
        1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11,
        1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11 * 12
      };
    
      /**
       * Returns {@code n} choose {@code k}, also known as the binomial coefficient of {@code n} and
       * {@code k}, or {@link Integer#MAX_VALUE} if the result does not fit in an {@code int}.
       *
       * @throws IllegalArgumentException if {@code n < 0}, {@code k < 0} or {@code k > n}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    //
    // Bisect operates on a target command line – the target – that can be
    // run with various changes individually enabled or disabled. With none
    // of the changes enabled, the target is known to succeed (exit with exit
    // code zero). With all the changes enabled, the target is known to fail
    // (exit any other way). Bisect repeats the target with different sets of
    // changes enabled, using binary search to find (non-overlapping) minimal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. pkg/bootstrap/option/convert.go

    	"github.com/envoyproxy/go-control-plane/pkg/conversion"
    	"google.golang.org/protobuf/types/known/durationpb"
    	pstruct "google.golang.org/protobuf/types/known/structpb"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshAPI "istio.io/api/mesh/v1alpha1"
    	networkingAPI "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginRegistryTest.groovy

            expect:
            pluginRegistry.lookup(DefaultPluginId.of("thing.somePlugin")) == null
        }
    
        def "plugin implementation with id in org.gradle namespace is also known by unqualified id"() {
            def url = writePluginProperties(TestPlugin1)
    
            given:
            classLoader.getResource("META-INF/gradle-plugins/org.gradle.somePlugin.properties") >> url
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 13K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/etcd/etcd_test.go

    func (f *fakeEtcdClient) Status(_ context.Context, endpoint string) (*clientv3.StatusResponse, error) {
    	return nil, errNotImplemented
    }
    
    // Sync synchronizes client's endpoints with the known endpoints from the etcd membership.
    func (f *fakeEtcdClient) Sync(_ context.Context) error {
    	return errNotImplemented
    }
    
    func testGetURL(t *testing.T, getURLFunc func(*kubeadmapi.APIEndpoint) string, port int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. docs/sts/web-identity.md

    MINIO_IDENTITY_OPENID_DISPLAY_NAME          (string)    Friendly display name for this Provider/App
    MINIO_IDENTITY_OPENID_CONFIG_URL*           (url)       openid discovery document e.g. "https://accounts.google.com/.well-known/openid-configuration"
    MINIO_IDENTITY_OPENID_CLIENT_ID*            (string)    unique public identifier for apps e.g. "292085223830.apps.googleusercontent.com"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/strconv/atof_test.go

    	{"0x0.00000000000057p-1022", "2.5e-323", nil}, // rounded down
    	{"0x0.00000000000050p-1022", "2.5e-323", nil}, // 0x0000000000000005
    
    	{"0x0.00000000000010p-1022", "5e-324", nil},  // 0x0000000000000001
    	{"0x0.000000000000081p-1022", "5e-324", nil}, // rounded up
    	{"0x0.00000000000008p-1022", "0", nil},       // rounded down
    	{"0x0.00000000000007fp-1022", "0", nil},      // rounded down
    
    	// try to overflow exponent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    		if ok {
    			out = append(out, dominant)
    		}
    	}
    
    	fields = out
    	sort.Sort(byIndex(fields))
    
    	return fields
    }
    
    // dominantField looks through the fields, all of which are known to
    // have the same name, to find the single field that dominates the
    // others using Go's embedding rules, modified by the presence of
    // JSON tags. If there are multiple top-level fields, the boolean
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  10. pkg/scheduler/metrics/resources/resources_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	h.ServeHTTP(r, req)
    
    	expected := `# HELP kube_pod_resource_limit [STABLE] Resources limit for workloads on the cluster, broken down by pod. This shows the resource usage the scheduler and kubelet expect per pod for resources along with the unit for the resource if any.
    # TYPE kube_pod_resource_limit gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top