Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for getBase (0.4 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The following methods on `BuildIdentifier` are deprecated:
    
    - `getName()`
    - `isCurrentBuild()`
    
    You could use these methods to distinguish between different project components with the same name but from different builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top