Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for while_1 (0.16 sec)

  1. cluster/gce/gci/configure-helper.sh

    # mangle table is less contentious so use that if possible.
    function config-ip-firewall {
      echo "Configuring IP firewall rules"
    
      # Do not consider loopback addresses as martian source or destination while
      # routing. This enables the use of 127/8 for local routing purposes.
      sysctl -w net.ipv4.conf.all.route_localnet=1
    
      # The GCI image has host firewall which drop most inbound/forwarded packets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        auto input_type = input.getType().cast<TensorType>();
        SmallVector<int64_t> input_shape(input_type.getShape());
        SmallVector<int64_t> input_dims =
            llvm::to_vector(op.getBroadcastDimensions());
    
        while (input_dims.size() < output_rank) {
          int32_t dim_to_expand = 0;
          for (int32_t i = 0; i < output_rank; ++i) {
            if (!llvm::is_contained(input_dims, i)) {
              dim_to_expand = i;
              break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                },
                "description": "deprecatedTopology contains topology information part of the v1beta1 API. This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v1.24).  While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored. Topology information can be found in the zone and nodeName fields instead.",
                "type": "object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__policy__v1_openapi.json

                  }
                ],
                "description": "Label query over pods whose evictions are managed by the disruption budget. A null selector will match no pods, while an empty ({}) selector will select all pods within the namespace.",
                "x-kubernetes-patch-strategy": "replace"
              },
              "unhealthyPodEvictionPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"break": 6, "const": 7, "continue": 8, "else": 9,
    				"for": 10, "function": 11, "if": 12, "import": 13,
    				"let": 14, "loop": 15, "package": 16, "namespace": 17,
    				"return": 18, "var": 19, "void": 20, "while": 21,
    				// identifiers that are part of the CEL language
    				"int": 101, "uint": 102, "double": 103, "bool": 104,
    				"string": 105, "bytes": 106, "list": 107, "map": 108,
    				"null_type": 109, "type": 110,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        string diff;                                                  \
        EXPECT_TRUE(EqualFunctionDefLibrary(expected, actual, &diff)) \
            << diff << "\nActual: " << actual.DebugString();          \
      } while (false)
    
    REGISTER_OP("InputTest")
        .Output("o: float")
        .SetShapeFn([](::tensorflow::shape_inference::InferenceContext* c) {
          c->set_output(0, c->UnknownShape());
          return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        return false;
    
      auto i1 = tail_type.getShape().rbegin();
      auto reduced_e1 = tail_type.getShape().rend();
      auto i2 = full_type.getShape().rbegin();
    
      while ((std::distance(i1, reduced_e1) > 0) && (*(reduced_e1 - 1) == 1)) {
        reduced_e1--;
      }
    
      return (std::distance(i1, reduced_e1) > 0) &&
             (std::distance(i1, reduced_e1) <= full_type.getRank()) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    	}
    }
    
    type stringTestList []struct {
    	name, got, exp string
    }
    
    func TestTranslateTimestampSince(t *testing.T) {
    	tl := stringTestList{
    		{"a while from now", translateTimestampSince(metav1.Time{Time: time.Now().Add(2.1e9)}), "<invalid>"},
    		{"almost now", translateTimestampSince(metav1.Time{Time: time.Now().Add(1.9e9)}), "0s"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top