Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 534 for setchl (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. architecture/security/docs/ca.dot

            label = "Istio Agent"
            color="orange"
            sds
            SecretManager -> caClient [label="Sign CSR"]
            caClient -> grpc
            grpc -> TokenProvider [dir=none,label="Fetch JWT",color=purple]
            grpc -> cfiles [dir=none,label="Fetch Cert",color=purple]
    
            sds -> SecretManager [label="Generate certificate"]
            SecretManager -> cfiles [label="Write certs to file"]
            cfiles [label="Certificate Files"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 00:43:58 UTC 2023
    - 674 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

        }
        tf_executor.fetch %island : !tf_executor.control
        // expected-remark@above {{ID: 4}}
        // expected-remark@above {{Predecessors: {3}}}
      }
      func.return
      // expected-remark@above {{ID: 6}}
      // expected-remark@above {{Sinks: {5}}}
    }
    
    // -----
    
    // Tests that we create dependencies to a fetch op, even if the fetch op has
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

            when:
            def result = withConnection {
                action(new NoOpBuildAction()).run()
            }
    
            then:
            result == "result"
        }
    
        def "Can fetch build scoped models from included builds"() {
            given:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    includeBuild 'includedBuild'
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_location_roundtrip.mlir

    // CHECK-NEXT:        "tf_executor.yield"(%{{.*}}) : (tensor<f32>) -> () loc("identity@some_function")
    // CHECK-NEXT:      }) : () -> (tensor<f32>, !tf_executor.control) loc("identity@some_function")
    // CHECK-NEXT:      "tf_executor.fetch"(%{{.*}}) : (tensor<f32>) -> () loc(unknown)
    // CHECK-NEXT:    }) : () -> tensor<f32> loc(unknown)
    // CHECK-NEXT:    "func.return"(%{{.*}}) : (tensor<f32>) -> () loc(unknown)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 05 14:24:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/kotlin/project/build.gradle.kts

    plugins {
        `java-library`
    }
    
    repositories {
        maven {
            setUrl(uri("../repo"))
        }
        mavenCentral()
    }
    
    // tag::consumer[]
    dependencies {
        // This project requires the main producer component
        implementation("org.gradle.demo:producer:1.0")
    
        // But we also want to use its MongoDB support
        runtimeOnly("org.gradle.demo:producer:1.0") {
            capabilities {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 496 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      }
    
      Operation &fetch = graph.GetBody().back();
      if (!isa<FetchOp>(fetch))
        return fetch.emitOpError()
               << "invalid tf_executor.graph terminator, fetch expected";
    
      // Ensure that the fetch terminator operands matches the graph result type.
      // All the non-control operands of the fetch operation must match the graph
      // returned value.
      if (fetch.getNumOperands() < graph.getNumResults())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/case.mlir

          tf_executor.fetch
        }
        func.return
      }
    
      func.func private @indexed_case_branch0_40(%arg0: tensor<i32>) -> tensor<*xi32> {
        %0 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top