Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 213 for example2 (0.29 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          maxval: The upper bound of the generated input
          dtype: The type of the generated input - usually dtypes.float32 for float
            and dtypes.int64 for int
          num_examples: Number of examples in the representative dataset.
    
        Yields:
          data_gen: A `quantize_model._RepresentativeSample` filled with random
            values.
        """
        for _ in range(num_examples):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation.go

    	return nil
    }
    
    // statelessCELCompiler does not support variable composition (and thus is stateless). It should be used when
    // variable composition is not allowed, for example, when validating MatchConditions.
    // strictStatelessCELCompiler is a cel Compiler that enforces strict cost enforcement.
    // nonStrictStatelessCELCompiler is a cel Compiler that does not enforce strict cost enforcement.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    var myCRDV1Beta1 schema.GroupVersionResource = schema.GroupVersionResource{
    	Group:    "mygroup.example.com",
    	Version:  "v1beta1",
    	Resource: "mycrds",
    }
    
    var myCRDInstanceName string = "mycrdinstance"
    
    func TestRatchetingFunctionality(t *testing.T) {
    	cases := []ratchetingTestCase{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSortedMap.java

        return new Builder<>(Ordering.<K>natural().reverse());
      }
    
      /**
       * A builder for creating immutable sorted map instances, especially {@code public static final}
       * maps ("constant maps"). Example:
       *
       * <pre>{@code
       * static final ImmutableSortedMap<Integer, String> INT_TO_WORD =
       *     new ImmutableSortedMap.Builder<Integer, String>(Ordering.natural())
       *         .put(1, "one")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. src/math/big/int_test.go

    		}
    	}
    }
    
    func BenchmarkBinomial(b *testing.B) {
    	var z Int
    	for i := 0; i < b.N; i++ {
    		z.Binomial(1000, 990)
    	}
    }
    
    // Examples from the Go Language Spec, section "Arithmetic operators"
    var divisionSignsTests = []struct {
    	x, y int64
    	q, r int64 // T-division
    	d, m int64 // Euclidean division
    }{
    	{5, 3, 1, 2, 1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    			svcExtraListenAddresses := listenerOpts.service.GetExtraAddressesForProxy(listenerOpts.proxy)
    			// Override the svcListenAddress, using the proxy ipFamily, for cases where the ipFamily cannot be detected easily.
    			// For example: due to the possibility of using hostnames instead of ips in ServiceEntry,
    			// it is hard to detect ipFamily for such services.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    // The drop-in configurations are processed in lexical order based on the file names. This means that the
    // configurations in files with lower numeric prefixes are applied first, followed by higher numeric prefixes.
    // For example, if the drop-in directory contains files named "10-config.conf" and "20-config.conf",
    // the configurations in "10-config.conf" will be applied first, and then the configurations in "20-config.conf" will be applied,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        // statically shaped operands since we can't ensure that the static shapes
        // has been sent back to host in all cases.  See
        // @static_shapes_sandwiched_outside_compilation MLIR test for an example.
        if (!HasDynamicExternalValues(&op) && !clustered_ops.empty()) {
          llvm::SmallSetVector<Value, 4> external_operands =
              GetExternalOperands(device_cluster, clustered_ops);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        return new Builder<>(Ordering.<K>natural().reverse());
      }
    
      /**
       * A builder for creating immutable sorted map instances, especially {@code public static final}
       * maps ("constant maps"). Example:
       *
       * <pre>{@code
       * static final ImmutableSortedMap<Integer, String> INT_TO_WORD =
       *     new ImmutableSortedMap.Builder<Integer, String>(Ordering.natural())
       *         .put(1, "one")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. src/net/http/fs_test.go

    	}})
    	tests := []struct {
    		reqPath, openArg string
    	}{
    		{"/foo.txt", "/foo.txt"},
    		{"//foo.txt", "/foo.txt"},
    		{"/../foo.txt", "/foo.txt"},
    	}
    	req, _ := NewRequest("GET", "http://example.com", nil)
    	for n, test := range tests {
    		rec := httptest.NewRecorder()
    		req.URL.Path = test.reqPath
    		fs.ServeHTTP(rec, req)
    		if got := <-ch; got != test.openArg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top