Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 356 for setchl (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/cluster_formation.mlir

            // CHECK: %[[D_OUTPUT:[0-9]*]] = "tf.D"(%[[TPU0_OUTPUT]])
            %5 = "tf.D"(%4) : (tensor<?xi32>) -> tensor<?xi32>
            tf_executor.yield %5 : tensor<?xi32>
          }
          tf_executor.fetch %1#0 : tensor<?xi32>
        }
        func.return %0 : tensor<?xi32>
      }
    }
    
    // -----
    
    // Single device cluster, live-in value comes directly from function argument.
    
    module {
      // CHECK-LABEL: func @arglivein
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/TextTransformerTest.java

        }
    
        public void test_transform_text() throws Exception {
            final byte[] data = new String("xyz").getBytes();
            final ResponseData responseData = new ResponseData();
            responseData.setUrl("file:/test.txt");
            responseData.setCharSet(Constants.UTF_8);
            responseData.setResponseBody(data);
            responseData.setMimeType("text/plain");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImpl.java

                final UrlQueueImpl<Long> urlQueue = new UrlQueueImpl<>();
                urlQueue.setSessionId(sessionId);
                urlQueue.setMethod(Constants.GET_METHOD);
                urlQueue.setUrl(url);
                urlQueue.setUrl(url);
                urlQueue.setDepth(0);
                urlQueue.setCreateTime(SystemUtil.currentTimeMillis());
                urlQueueList.add(urlQueue);
            }
        }
    
        /*
         * (non-Javadoc)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git.go

    		release()
    
    		if err == nil {
    			return r.statLocal(ctx, rev, ref)
    		}
    		// Don't try to be smart about parsing the error.
    		// It's too complex and varies too much by git version.
    		// No matter what went wrong, fall back to a complete fetch.
    	}
    
    	// Last resort.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. pkg/kubelet/util/manager/cache_based_manager.go

    		if err != nil && !apierrors.IsNotFound(err) && data.object == nil && data.err == nil {
    			// Couldn't fetch the latest object, but there is no cached data to return.
    			// Return the fetch result instead.
    			return object, err
    		}
    		if (err == nil && !isObjectOlder(object, data.object)) || apierrors.IsNotFound(err) {
    			// If the fetch succeeded with a newer version of the object, or if the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/batch_function_fallback_resource_variable_as_captured_tensor.mlir

          tf_executor.fetch %outputs_2 : tensor<*xf32>
        }
        func.return %0 : tensor<*xf32>
      }
      func.func private @batched_func(%arg0: tensor<*x!tf_type.resource>) -> tensor<?xf32> {
        %0 = tf_executor.graph {
          %outputs_0, %control_0 = tf_executor.island wraps "tf.ReadVariableOp"(%arg0) : (tensor<*x!tf_type.resource>) -> tensor<?xf32>
          tf_executor.fetch %outputs_0 : tensor<?xf32>
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/cluster_outlining.mlir

          "tf_device.cluster"() ({
            %3 = "tf.A"() : () -> tensor<?xi32>
            tf_device.return %3 : tensor<?xi32>
          }) {} : () -> tensor<?xi32>
        // CHECK: tf_executor.fetch %[[CLUSTER_OUTPUT]]
        tf_executor.fetch %1#0 : tensor<?xi32>
      }
      func.return %0 : tensor<?xi32>
    }
    
    // CHECK: func private @[[CLUSTER]]
    // CHECK-SAME: () -> tensor<?xi32>
    // CHECK: %[[A_OUTPUT:[0-9]*]] = "tf.A"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            when:
            executer.withArguments(ENABLE_CLI)
            fetchModel(IdeaProject)
    
            then:
            fixture.assertStateLoaded()
        }
    
        def "can fetch BasicIdeaProject model for root and re-fetch cached"() {
            settingsFile << """
                rootProject.name = 'root'
            """
    
            when:
            executer.withArguments(ENABLE_CLI)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java

        @Override
        public String getUrl() {
            return url;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.UrlQueue#setUrl(java.lang.String)
         */
        @Override
        public void setUrl(final String url) {
            this.url = url;
        }
    
        @Override
        public String getMetaData() {
            return metaData;
        }
    
        @Override
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. releasenotes/notes/fips.yaml

      * Istiod xDS server;
      * Istiod injection and validation webhook servers.
    
      The restrictions are not applied on the following data paths:
      * Istiod to Kubernetes API server;
      * JWK fetch from Istiod;
      * Wasm image and URL fetch from Istio Proxy containers;
      * ztunnel.
    
      Note that Istio injector will propagate the value of COMPLIANCE_POLICY to the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top