Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for _encapsulate (0.18 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

                  result.ret_types);
        TF_EXPECT_GRAPH_EQ(expected_body_def, result.gdef);
      }
    
      // Encapsulates the same computation again, verifies we reuse the same
      // function. Encapsulation should be deterministic to avoid recompilation.
      TF_ASSERT_OK(
          EncapsulateXlaComputationsPass::Encapsulate(&graph_copy, &flib_def));
      std::unordered_map<string, Node*> index_copy =
          graph_copy->BuildNodeNameIndex();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. src/crypto/internal/mlkem768/mlkem768_test.go

    	for i := 0; i < len(ek)-1; i++ {
    		if _, _, err := Encapsulate(ek[:i]); err == nil {
    			t.Errorf("expected error for ek length %d", i)
    		}
    	}
    	ekLong := ek
    	for i := 0; i < 100; i++ {
    		ekLong = append(ekLong, 0)
    		if _, _, err := Encapsulate(ekLong); err == nil {
    			t.Errorf("expected error for ek length %d", len(ekLong))
    		}
    	}
    
    	c, _, err := Encapsulate(ek)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/crypto/internal/mlkem768/mlkem768.go

    	}
    
    	return dk
    }
    
    // Encapsulate generates a shared key and an associated ciphertext from an
    // encapsulation key, drawing random bytes from crypto/rand.
    // If the encapsulation key is not valid, Encapsulate returns an error.
    //
    // The shared key must be kept secret.
    func Encapsulate(encapsulationKey []byte) (ciphertext, sharedKey []byte, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    include::sample[dir="snippets/plugins/multiproject/groovy", files="settings.gradle[tags=include-subprojects];build.gradle[tags=plugins-on-subprojects];hello-a/build.gradle[];hello-b/build.gradle[];goodbye-c/build.gradle[]"]
    ====
    
    You can also encapsulate the versions of external plugins by composing the build logic using your own <<sharing_build_logic_between_subprojects#sec:convention_plugins,convention plugins>>.
    
    [[sec:buildsrc_plugins_dsl]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

      call_def->set_op(absl::StrCat(call_def->op(), "_", fingerprint));
      return absl::OkStatus();
    }
    
    }  // namespace
    
    /*static*/ Status EncapsulateXlaComputationsPass::Encapsulate(
        std::unique_ptr<Graph>* graph, FunctionLibraryDefinition* flib_def) {
      // Check for undeclared outputs before Encapsulation, so we can give a better
      // error message.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/internal/coverage/defs.go

    //  | <uleb128> file: S0 (index into string table)
    //  | <unit 0>:  S0   L15    L19   5
    //  ---end-----------
    
    // The following types and constants used by the meta-data encoder/decoder.
    
    // FuncDesc encapsulates the meta-data definitions for a single Go function.
    // This version assumes that we're looking at a function before inlining;
    // if we want to capture a post-inlining view of the world, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_server_journal.go

    			return
    		}
    		defer gz.Close()
    		out = gz
    	}
    	nlq.Copy(out)
    }
    
    // nodeLogQuery encapsulates the log query request
    type nodeLogQuery struct {
    	// Services are the list of services to be queried
    	Services []string
    	// Files are the list of files
    	Files []string
    	options
    }
    
    // options encapsulates the query options for services
    type options struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    [[custom_plugins]]
    = Understanding Plugins
    
    Gradle comes with a set of powerful core systems such as dependency management, task execution, and project configuration.
    But everything else it can do is supplied by plugins.
    
    Plugins encapsulate logic for specific tasks or integrations, such as compiling code, running tests, or deploying artifacts.
    By applying plugins, users can easily add new features to their build process without having to write complex code from scratch.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/TypeResolver.java

    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicInteger;
    import javax.annotation.CheckForNull;
    
    /**
     * An object of this class encapsulates type mappings from type variables. Mappings are established
     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/TypeResolver.java

    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicInteger;
    import javax.annotation.CheckForNull;
    
    /**
     * An object of this class encapsulates type mappings from type variables. Mappings are established
     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
Back to top