Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for getBase (0.12 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

          mlir::TypeAttr type_attr =
              mlir::TypeAttr::get(std::get<0>(type_and_name));
          auto named_attr =
              builder.getNamedAttr(std::get<1>(type_and_name), type_attr);
          op_state.addAttribute(named_attr.getName(), named_attr.getValue());
        }
      }
      return absl::OkStatus();
    }
    
    // TODO(krzysd) Handle function calls
    StatusOr<Operation*> ConvertOp(
        const tflite::OperatorT& op, const std::vector<Value>& vals_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

          };
    
      // We use a holder class to delay initialization: https://github.com/google/guava/issues/6566
      private static final class LoggerHolder {
        static final Logger logger = Logger.getLogger(CacheBuilder.class.getName());
      }
    
      static final int UNSET_INT = -1;
    
      boolean strictParsing = true;
    
      int initialCapacity = UNSET_INT;
      int concurrencyLevel = UNSET_INT;
      long maximumSize = UNSET_INT;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // can break the verifier on function type mismatch.
    def AllUsersInTF : Constraint<CPred<[{
      llvm::all_of($0.getUsers(), [&](Operation *user) {
        auto name = user->getName().getDialectNamespace();
        return name == "tf" || name == "tfl";
      })
      }]>, "all users are TF/TFL operations.">;
    
    def RemoveShapeOnlyCast : Pat<(TFL_CastOp:$output $input),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                if (aliasConfigDir.isDirectory()) {
                    stream(aliasConfigDir.listFiles((dir, name) -> name.endsWith(".json"))).of(stream -> stream.forEach(f -> {
                        final String aliasName = f.getName().replaceFirst(".json$", "");
                        String source = FileUtil.readUTF8(f);
                        if ("{}".equals(source.trim())) {
                            source = null;
                        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    #include "tensorflow/compiler/mlir/lite/transforms/generated_lower_static_tensor_list.inc"
    
    bool ModuleContainsTensorListOp(ModuleOp mod) {
      auto res = mod->walk([&](mlir::Operation *op) -> WalkResult {
        if (op->getName().getStringRef().contains("TensorList")) {
          return WalkResult::interrupt();
        }
        return WalkResult::advance();
      });
      return res.wasInterrupted();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    	var ret *v1.Pod
    	var err error
    	client.AddReactor("*", "pods", func(action core.Action) (bool, runtime.Object, error) {
    		switch action := action.(type) {
    		case core.GetAction:
    			assert.Equal(t, pod.Name, action.GetName(), "Unexpected GetAction: %+v", action)
    		case core.UpdateAction:
    			assert.Equal(t, pod.Name, action.GetObject().(*v1.Pod).Name, "Unexpected UpdateAction: %+v", action)
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            .testEquals();
      }
    
      // T is used inside to test type variable
      public <T> void testToString() {
        assertEquals(String.class.getName(), new TypeToken<String>() {}.toString());
        assertEquals("T", TypeToken.of(new TypeCapture<T>() {}.capture()).toString());
        assertEquals("java.lang.String", new Entry<String, Integer>() {}.keyType().toString());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            .testEquals();
      }
    
      // T is used inside to test type variable
      public <T> void testToString() {
        assertEquals(String.class.getName(), new TypeToken<String>() {}.toString());
        assertEquals("T", TypeToken.of(new TypeCapture<T>() {}.capture()).toString());
        assertEquals("java.lang.String", new Entry<String, Integer>() {}.keyType().toString());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    		tlsContext := &tls.DownstreamTlsContext{}
    		ts := filterChain.GetTransportSocket().GetTypedConfig()
    		if ts == nil {
    			return fmt.Errorf("expected transport socket for chain %v", filterChain.GetName())
    		}
    		if err := ts.UnmarshalTo(tlsContext); err != nil {
    			return err
    		}
    		commonTLSContext := tlsContext.CommonTlsContext
    		if len(commonTLSContext.TlsCertificateSdsSecretConfigs) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * If the root project is unnamed and is located on a file system root it will have a randomly-generated name
         * </p>
         *
         * @return The name of this project. Never return null.
         */
        String getName();
    
        /**
         * Returns a human-consumable display name for this project.
         */
        String getDisplayName();
    
        /**
         * Returns the description of this project, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top