Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 293 for setchl (0.13 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/AbstractCrawlerClientTest.java

        public void test_checkMaxContentLength() {
            AbstractCrawlerClient client = new AbstractCrawlerClient() {
            };
            ResponseData responseData = new ResponseData();
            responseData.setUrl("http://test.com/");
    
            client.checkMaxContentLength(responseData);
    
            responseData.setContentLength(-1);
            client.checkMaxContentLength(responseData);
    
            responseData.setContentLength(1000L);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf-gradient-attr.mlir

      %graph = tf_executor.graph {
        tf_executor.fetch %arg0 : tensor<*xf32>
      }
      func.return %graph : tensor<*xf32>
    }
    
    func.func @foo(%arg0: tensor<*xf32>) -> tensor<*xf32>
      attributes  {tf.gradient = @foo_grad} {
      %graph = tf_executor.graph {
        tf_executor.fetch %arg0 : tensor<*xf32>
      }
      func.return %graph : tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 18:52:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute.mlir

          }) {device = "CPU:0"} : () -> (tensor<f32>, tensor<i32>)
          %c = "tf.opC"() : () -> tensor<i1>
          tf_executor.yield %a, %launch#0, %launch#1, %c : tensor<i1>, tensor<f32>, tensor<i32>, tensor<i1>
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK-NOT: tf_executor.island
    // CHECK:      %[[A:.*]], {{.*}} = tf_executor.island wraps "tf.opA"
    // CHECK:      %[[B:.*]]:2, {{.*}} = tf_executor.island wraps "tf.opB"(%[[A]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 17:10:32 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/UrlArtifactRepository.java

         */
        URI getUrl();
    
        /**
         * Sets the base URL of this repository.
         *
         * @param url The base URL.
         */
        void setUrl(URI url);
    
        /**
         * Sets the base URL of this repository.
         *
         * @param url The base URL.
         */
        void setUrl(Object url);
    
        /**
         * Specifies whether it is acceptable to communicate with a repository over an insecure HTTP connection.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 24 17:16:12 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/end-to-end-tpu-reshard-variables.mlir

            "tf.StatefulPartitionedCall"(%arg0) <{config = "", config_proto = "", executor_type = "", f = @partitioned}> : (tensor<*x!tf_type.resource>) -> ()
            tf_executor.yield
          }
          tf_executor.fetch %control : !tf_executor.control
        }
        return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/internal/zstd/bits.go

    	}
    	return rbr, nil
    }
    
    // val is called to fetch a value of b bits.
    func (rbr *reverseBitReader) val(b uint8) (uint32, error) {
    	if !rbr.fetch(b) {
    		return 0, rbr.r.makeEOFError(int(rbr.off))
    	}
    
    	rbr.cnt -= uint32(b)
    	v := (rbr.bits >> rbr.cnt) & ((1 << b) - 1)
    	return v, nil
    }
    
    // fetch is called to ensure that at least b bits are available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/executor_tpuv1_outline_tpu_island.mlir

          tf_executor.yield %3 : tensor<i1>
        }
        %2:2 = tf_executor.island(%1#1) {
          %4 = "tf.opB"() : () -> tensor<f32>
          tf_executor.yield %4 : tensor<f32>
        }
        tf_executor.fetch %2#0 : tensor<f32>
      }
      func.return %0 : tensor<f32>
    }
    
    // CHECK-LABEL: @func2
    func.func @func2(%arg0 : tensor<i1>) -> tensor<i1> {
      %0 = tf_executor.graph {
        %1:2 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/test_graph_tfunknownop3.config.pbtxt

    feed {
      id { node_name: "y_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "z" output_index: 1}
      shape {
        dim { size: 1 }
      }
      type: DT_INT32
    }
    fetch {
      id { node_name: "x_y_sum" }
    }
    fetch {
      id { node_name: "x_z_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 372 bytes
    - Viewed (0)
  9. maven-model/src/test/java/org/apache/maven/model/OrganizationTest.java

            assertNotNull(new Organization().toString());
        }
    
        public void testToStringNotNonsense11() {
            Organization org = new Organization();
            org.setName("Testing Maven Unit");
            org.setUrl("https://maven.localdomain");
    
            assertEquals("Organization {name=Testing Maven Unit, url=https://maven.localdomain}", org.toString());
        }
    
        public void testToStringNotNonsense10() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pkg/controller/certificates/signer/ca_provider.go

    	}
    
    	ret := &caProvider{
    		caLoader: caLoader,
    	}
    	if err := ret.setCA(); err != nil {
    		return nil, err
    	}
    
    	return ret, nil
    }
    
    type caProvider struct {
    	caValue  atomic.Value
    	caLoader *dynamiccertificates.DynamicCertKeyPairContent
    }
    
    // setCA unconditionally stores the current cert/key content
    func (p *caProvider) setCA() error {
    	certPEM, keyPEM := p.caLoader.CurrentCertKeyContent()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 16 18:33:22 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top