Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 114 for SAME (0.09 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				ValsEqualThemselvesAndDataLiteral("self.val5", "self.val6", fmt.Sprintf("%d", math.MaxInt64)),
    				"self.val1 == self.val6", // integer with no format is the same as int64
    				"type(self.val1) == int",
    				fmt.Sprintf("self.val3 + 1 == %d + 1", math.MaxInt32), // CEL integers are 64 bit
    				"type(self.val3) == int",
    				"type(self.val5) == int",
    			},
    			errors: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

              // TODO(b/287306548): we need more rigorous check to make sure the
              // node we're updating is the right one for now we're just ensuring
              // they have the same number of input, output and first output is
              // the same
              if (key_inputs.size() == inputs.size() &&
                  key_outputs.size() == outputs.size() &&
                  key_outputs[0] == outputs[0]) {
                ret &=
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    			}
    		})
    	}
    }
    
    // The point of this test is to show that you:
    //   - get the same priority for a zero-request pod as for a pod with the defaults requests,
    //     both when the zero-request pod is already on the node and when the zero-request pod
    //     is the one being scheduled.
    //   - don't get the same score no matter what we schedule.
    func TestZeroRequest(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	if a1 == a2 {
    		t.Logf("made two requests from a single conn %q (as expected)", a1)
    	} else {
    		t.Errorf("server reported requests from %q and %q; expected same connection", a1, a2)
    	}
    
    	// The two requests should have used the same connection,
    	// and there should not have been a second connection that
    	// was created by racing dial against reuse.
    	// (The first get was completed when the second get started.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

                see <a href="../maven-core/artifact-handlers.html">default artifact handlers</a> for a list,</li>
                <li>distinguishing two artifacts
                that belong to the same POM but were built differently.
                For example, {@code jdk14} and {@code jdk15}.</li>
                </ul>
                ]]>
              </description>
              <type>String</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    // a given user or group. getsubids produces a line for each mapping configured.
    // Here we expect that there is a single mapping, and the same values are used for the subordinate user and group ID ranges.
    // The output is something like:
    // $ getsubids kubelet
    // 0: kubelet 65536 2147483648
    // $ getsubids -g kubelet
    // 0: kubelet 65536 2147483648
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      Type broadcasted_type =
          OpTrait::util::getBroadcastedType(a, b, output_element_type);
      return broadcasted_type != Type() && broadcasted_type == expected_output;
    }
    
    // Returns whether if `type1` dimensions are the same as the ending dimensions
    // of `type2`. This is more restricted than broadcastable.
    bool IsTailOfShape(Type type1, Type type2) {
      auto tail_type = mlir::dyn_cast<ShapedType>(type1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        // The composed future also yields 6.
        assertEquals(6, getDone(transformedFuture).intValue());
    
        // Repeated calls yield the same value even though the function's behavior
        // changes
        holder.value = 3;
        assertEquals(6, getDone(transformedFuture).intValue());
        assertEquals(7, adder.apply(4).intValue());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        // The composed future also yields 6.
        assertEquals(6, getDone(transformedFuture).intValue());
    
        // Repeated calls yield the same value even though the function's behavior
        // changes
        holder.value = 3;
        assertEquals(6, getDone(transformedFuture).intValue());
        assertEquals(7, adder.apply(4).intValue());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top