Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,498 for runActions (0.18 sec)

  1. src/go/doc/testdata/issue22856.go

    // type *T are not factory functions of type T.
    func NewSliceOfSlice() [][]T { return []T{[]T{}} }
    
    // NewPointerSliceOfSlice is not a factory function because slices of a
    // slice of type *T are not factory functions of type T.
    func NewPointerSliceOfSlice() [][]*T { return []*T{[]*T{}} }
    
    // NewSlice3 is not a factory function because 3 nested slices of type T
    // are not factory functions of type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/go/doc/testdata/f.2.golden

    // The package f is a go/doc test for functions and factory ...
    PACKAGE f
    
    IMPORTPATH
    	testdata/f
    
    FILENAMES
    	testdata/f.go
    
    FUNCTIONS
    	// Exported must always be visible. Was issue 2824. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 215 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/apis/scheduling/v1/register.go

    }
    
    var (
    	localSchemeBuilder = &schedulingv1.SchemeBuilder
    	// AddToScheme applies all the stored functions to the scheme.
    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 04:37:07 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top