Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for Def (0.03 sec)

  1. tensorflow/c/c_api.cc

      return nullptr;
    }
    
    void TF_GraphToGraphDef(TF_Graph* graph, TF_Buffer* output_graph_def,
                            TF_Status* status) {
      GraphDef def;
      {
        mutex_lock l(graph->mu);
        graph->graph.ToGraphDef(&def);
      }
      status->status = MessageToBuffer(def, output_graph_def);
    }
    
    void TF_GraphGetOpDef(TF_Graph* graph, const char* op_name,
                          TF_Buffer* output_op_def, TF_Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        server.useHttps(handshakeCertificates.sslSocketFactory())
        server.enqueue(MockResponse(body = "ABC"))
        server.enqueue(MockResponse(body = "DEF"))
        server.enqueue(MockResponse(body = "GHI"))
        assertContent("ABC", getResponse(newRequest("/")))
        assertContent("DEF", getResponse(newRequest("/")))
        assertContent("GHI", getResponse(newRequest("/")))
        assertThat(hostnameVerifier.calls)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

        )
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Last-Modified: " + formatDate(-5, TimeUnit.MINUTES))
            .addHeader("Expires: " + formatDate(2, TimeUnit.HOURS))
            .body("DEF")
            .build(),
        )
        client =
          client.newBuilder()
            .sslSocketFactory(
              handshakeCertificates.sslSocketFactory(),
              handshakeCertificates.trustManager,
            )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  4. pkg/apis/batch/validation/validation_test.go

    			Containers:     []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    			InitContainers: []api.Container{{Name: "def", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    		},
    	}
    }
    
    func TestValidateJob(t *testing.T) {
    	validJobObjectMeta := metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

    class AndroidSantaTrackerCachingSmokeTest extends AbstractAndroidSantaTrackerSmokeTest {
    
        def "can cache Santa Tracker Android application (agp=#agpVersion)"() {
    
            given:
            AGP_VERSIONS.assumeCurrentJavaVersionIsSupportedBy(agpVersion)
    
            and:
            def originalDir = temporaryFolder.createDir("original")
            def relocatedDir = temporaryFolder.createDir("relocated")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        Operation* def = use.getOwner();
        if (!llvm::isa<AssignVariableOp>(def) && !llvm::isa<ReadVariableOp>(def)) {
          return false;
        }
      }
    
      bool changed = false;
    
      // Look for any `AssignVariableOp` and `ReadVariableOp` that uses the value of
      // this op.
      for (auto& use : make_early_inc_range(resource.getUses())) {
        Operation* def = use.getOwner();
        Value value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // PrepareConvert needs to ensure that the original `graph` is cloned prior
      // execution. The cloning procedure relies on the roundtrip through the
      // GraphDef. Graph to GraphDef def conversion is heavy, in case, `graph_def`
      // was obtained previously provide it to the PrepareConvert to reuse.
      Status PrepareConvert(const Graph& graph,
                            std::unique_ptr<GraphDef> graph_def = nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    struct SignatureDefData {
      // Note, we are using maps here to make order deterministic
      // for easily testing only.
    
      // Inputs defined in the signature def mapped to tensor names.
      std::map<std::string, std::string> inputs;
      // Outputs defined in the signature def mapped to tensor names.
      std::map<std::string, std::string> outputs;
      // Signature key.
      std::string signature_key;
      // Subgraph index.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. pkg/apis/apps/validation/validation_test.go

    			},
    		},
    	}
    
    	addContainersValidTemplate := validPodTemplate.DeepCopy()
    	addContainersValidTemplate.Template.Spec.Containers = append(addContainersValidTemplate.Template.Spec.Containers,
    		api.Container{Name: "def", Image: "image2", ImagePullPolicy: "IfNotPresent"})
    	if len(addContainersValidTemplate.Template.Spec.Containers) != len(validPodTemplate.Template.Spec.Containers)+1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      }
    };
    
    // Fuse Mul with proceeding Affine ops. This is an C++ implementation of the
    // following table gen implementation, which doesn't derived the result type of
    // the TFL_DequantizeOp.
    // def : Pat<(TFL_MulOp (TFL_Conv2DOp:$conv_output $input,
    //                          (TFL_DequantizeOp (TFL_QuantizeOp
    //                              (Arith_ConstantOp F32ElementsAttr:$filter),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top