Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,135 for runActions (0.18 sec)

  1. pkg/proxy/winkernel/hcnutils.go

    	"github.com/Microsoft/hcsshim"
    	"github.com/Microsoft/hcsshim/hcn"
    	"k8s.io/klog/v2"
    )
    
    type HcnService interface {
    	// Network functions
    	GetNetworkByName(networkName string) (*hcn.HostComputeNetwork, error)
    	GetNetworkByID(networkID string) (*hcn.HostComputeNetwork, error)
    	// Endpoint functions
    	ListEndpoints() ([]hcn.HostComputeEndpoint, error)
    	ListEndpointsOfNetwork(networkId string) ([]hcn.HostComputeEndpoint, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 03:08:46 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

      std::vector<Tensor> outputs(noutputs);
      Status result;
    
      if (handle == nullptr) {
        RunOptions run_options_proto;
        if (run_options != nullptr && !run_options_proto.ParseFromArray(
                                          run_options->data, run_options->length)) {
          status->status = InvalidArgument("Unparseable RunOptions proto");
          return;
        }
        if (run_metadata != nullptr && run_metadata->data != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/doc.go

    // Package boring provides access to BoringCrypto implementation functions.
    // Check the constant Enabled to find out whether BoringCrypto is available.
    // If BoringCrypto is not available, the functions in this package all panic.
    package boring
    
    // Enabled reports whether BoringCrypto is available.
    // When enabled is false, all functions in this package panic.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 05:28:51 UTC 2023
    - 826 bytes
    - Viewed (0)
  4. pkg/controller/validatingadmissionpolicystatus/config/v1alpha1/conversion.go

    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // need to be manually exposed like this in order for other packages that reference
    // this package to be able to call these conversion functions in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/annotationForFunctionOutOfCodeGenTarget.txt

    public final class MainKt {
        // source: 'main.kt'
        public final static method PostCardSimple(p0: kotlin.jvm.functions.Function1, p1: boolean, p2: kotlin.jvm.functions.Function0): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 07:06:11 UTC 2024
    - 192 bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/aprof.go

    // looking for the C code's func pointer.
    
    // This is a regression test for issue 14599, where profiling fails when the
    // function is the first C function. Exported functions are the first C
    // functions, so we use an exported function. Exported functions are created in
    // lexicographical order of source files, so this file is named aprof.go to
    // ensure its function is first.
    
    // extern void CallGoNop();
    import "C"
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 19 16:23:54 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. src/sort/example_multi_test.go

    }
    
    // Less is part of sort.Interface. It is implemented by looping along the
    // less functions until it finds a comparison that discriminates between
    // the two items (one is less than the other). Note that it can call the
    // less functions twice per call. We could change the functions to return
    // -1, 0, 1 and reduce the number of calls for greater efficiency: an
    // exercise for the reader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateInsertCustomAggregationOpsPass(
        const ::stablehlo::quantization::CalibrationOptions& calib_opts);
    
    // Replaces composite functions with quantized composite functions. After this
    // pass runs, functions in the given graph will be replaced with their quantized
    // versions. By doing so, the quantization will be applied to the given input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

      }
      return bytecode;
    }
    
    // Serializes the stablehlo functions called by XlaCallModuleOp to bytecode
    // and embeds the bytecode in XlaCallModuleOp's `module` attribute.
    //
    // The stablehlo functions include the function referred by XlaCallModuleOp's
    // `_entry_function` attribute, and any stablehlo functions called transitively
    // from the entry function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/codegen/ApiTypeProviderTest.kt

            apiTypeProviderFor(jars).use { api ->
                val type = api.type<AbstractCopyTask>()
    
                assertThat(type.functions.filter { it.name == "filter" }.size, equalTo(4))
    
                assertThat(type.functions.filter { it.name == "getRootSpec" }.size, equalTo(0))
            }
        }
    
        @Test
        fun `provides generic bounds`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top