Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 7,381 for _get (0.05 sec)

  1. tensorflow/compiler/mlir/lite/utils/perception_ops_utils_test.cc

        builder_ = std::make_unique<mlir::Builder>(context_.get());
    
        fused_max_unpooling_func_ =
            createMaxUnpoolingFunc(builder_.get(), {2, 4, 4, 2}, {2, 2, 2, 2});
    
        func_attr_ = createMaxUnpoolingAttr(
            context_.get(), "SAME",
            createInt32Array<2>(builder_.get(), context_.get(), {2, 2}),
            createInt32Array<2>(builder_.get(), context_.get(), {2, 2}));
      }
    
      void TearDown() override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 21:02:21 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. tests/test_serialize_response_model.py

        price: Optional[float] = None
        owner_ids: Optional[List[int]] = None
    
    
    @app.get("/items/valid", response_model=Item)
    def get_valid():
        return Item(aliased_name="valid", price=1.0)
    
    
    @app.get("/items/coerce", response_model=Item)
    def get_coerce():
        return Item(aliased_name="coerce", price="1.0")
    
    
    @app.get("/items/validlist", response_model=List[Item])
    def get_validlist():
        return [
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

            assertEquals("b2", itemList.get(1).getInputs()[1]);
            assertEquals("B1", itemList.get(1).getOutputs()[0]);
            assertFalse(itemList.get(1).isUpdated());
    
            assertEquals(1, itemList.get(2).getInputs().length);
            assertEquals(2, itemList.get(2).getOutputs().length);
            assertEquals("c1", itemList.get(2).getInputs()[0]);
            assertEquals("C1", itemList.get(2).getOutputs()[0]);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. tensorflow/c/eager/gradients_test.cc

      auto tape = std::make_unique<Tape>(/*persistent=*/false);
      s = Execute(check_numerics_op.get(), ctx.get(), absl::MakeSpan(outputs),
                  &num_retvals, &forward_op, tape.get(), registry);
      ASSERT_EQ(errors::OK, s.code()) << s.message();
    
      string read_message;
      s = forward_op.attrs.Get("message", &read_message);
      ASSERT_EQ(errors::OK, s.code()) << s.message();
      ASSERT_EQ(read_message, message);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

          const auto op = quantized_graph->operators()->Get(i);
          const uint32_t op_code_idx = op->opcode_index();
          if (GetBuiltinCode(output_model->operator_codes()->Get(op_code_idx)) ==
              BuiltinOperator_DEQUANTIZE) {
            dequant_input_idx = op->inputs()->Get(0);
            dequant_output_idx = op->outputs()->Get(0);
          }
        }
        ASSERT_GT(dequant_input_idx, -1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

        }
      }
    
      /** get returns the last value set at index */
      public void testGetSet() {
        AtomicDoubleArray aa = new AtomicDoubleArray(VALUES.length);
        for (int i = 0; i < VALUES.length; i++) {
          assertBitEquals(0.0, aa.get(i));
          aa.set(i, VALUES[i]);
          assertBitEquals(VALUES[i], aa.get(i));
          aa.set(i, -3.0);
          assertBitEquals(-3.0, aa.get(i));
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/clusterrole.yaml

        resources: ["customresourcedefinitions"]
        verbs: ["get", "list", "watch"]
    
      # discovery and routing
      - apiGroups: [""]
        resources: ["pods", "nodes", "services", "namespaces", "endpoints"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["discovery.k8s.io"]
        resources: ["endpointslices"]
        verbs: ["get", "list", "watch"]
    
    {{- if .Values.pilot.taint.enabled }}
      - apiGroups: [""]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    				},
    				{
    					Name:       "cronjobs/status",
    					Namespaced: true,
    					Kind:       "CronJob",
    					Group:      "batch",
    					Version:    "v1",
    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. tests/test_application.py

        ],
    )
    def test_get_path(path, expected_status, expected_response):
        response = client.get(path)
        assert response.status_code == expected_status
        assert response.json() == expected_response
    
    
    def test_swagger_ui():
        response = client.get("/docs")
        assert response.status_code == 200, response.text
        assert response.headers["content-type"] == "text/html; charset=utf-8"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_upgrade.txt

    env GO111MODULE=on
    
    go get rsc.io/quote@v1.5.1
    go list -m all
    stdout 'rsc.io/quote v1.5.1'
    grep 'rsc.io/quote v1.5.1$' go.mod
    
    # get -u should update dependencies of the package in the current directory
    go get -u
    grep 'rsc.io/quote v1.5.2$' go.mod
    grep 'golang.org/x/text [v0-9a-f\.-]+ // indirect' go.mod
    
    # get -u rsc.io/sampler should update only sampler's dependencies
    cp go.mod-v1.5.1 go.mod
    go get -u rsc.io/sampler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top