Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 670 for findRef (0.16 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3.go

    	return &queryParamVerifierV3{
    		finder:     NewCRDFinder(CRDFromDynamic(dynamicClient)),
    		root:       openapi3.NewRoot(oapiClient),
    		queryParam: queryParam,
    	}
    }
    
    // queryParamVerifierV3 encapsulates info necessary to determine if
    // the queryParam is a parameter for the Patch endpoint for a
    // passed GVK.
    type queryParamVerifierV3 struct {
    	finder     CRDFinder
    	root       openapi3.Root
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/headers/platform.h

    #ifndef PLATFORM_H
    #define PLATFORM_H
    
    extern const char* platform_name;
    
    int max_path_length();
    
    unsigned long long max_memory();
    
    int is_posix_like();
    
    #define KB(x) x
    #define MB(x) KB(x)*1024
    #define GB(x) MB(x)*1024
    #define TB(x) GB(x)*1024
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 267 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/min_max_value.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #ifndef TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_CALIBRATION_MIN_MAX_VALUE_H_
    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_CALIBRATION_MIN_MAX_VALUE_H_
    
    #include <utility>
    
    namespace stablehlo::quantization {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 16:32:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_quantize_op_utils.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #ifndef TENSORFLOW_COMPILER_MLIR_QUANTIZATION_TENSORFLOW_UTILS_TF_QUANTIZE_OP_UTILS_H_
    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_TENSORFLOW_UTILS_TF_QUANTIZE_OP_UTILS_H_
    
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 07:39:48 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/mlprogram_util.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_UTILS_MLPROGRAM_UTIL_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_UTILS_MLPROGRAM_UTIL_H_
    
    #include <memory>
    #include <string>
    
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 22:13:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/cpplibrary/hello.h.template

    ${fileComment.multilineComment}
    #ifndef ${namespace.groovyString.toUpperCase()}_H
    #define ${namespace.groovyString.toUpperCase()}_H
    
    #ifdef _WIN32
    #define ${namespace.groovyString.toUpperCase()}_EXPORT_FUNC __declspec(dllexport)
    #else
    #define ${namespace.groovyString.toUpperCase()}_EXPORT_FUNC
    #endif
    
    #include <string>
    
    namespace ${namespace.groovyString} {
        class Greeter {
            public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 497 bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    index c555bf2..143b26d 100644
    --- a/include/libc-symbols.h
    +++ b/include/libc-symbols.h
    @@ -107,6 +107,11 @@
     # endif
     #endif
     
    +#ifndef __attribute_copy__
    +/* Provide an empty definition when cdefs.h is not included.  */
    +# define __attribute_copy__(arg)
    +#endif
    +
     #ifndef __ASSEMBLER__
     /* GCC understands weak symbols and aliases; use its interface where
        possible, instead of embedded assembly language.  */
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_TRANSLATE_SPLIT_INTO_ISLAND_PER_OP_PASS_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_TRANSLATE_SPLIT_INTO_ISLAND_PER_OP_PASS_H_
    
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Dec 19 21:44:14 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCHelloWorldApp.groovy

                }
            """)
        }
    
        String alternateOutput = "$HELLO_WORLD\n"
    
        @Override
        SourceFile getLibraryHeader() {
            return sourceFile("headers", "hello.h", """
                #ifndef HELLO_H
                #define HELLO_H
                #import <Foundation/Foundation.h>
    
                @interface Greeter : NSObject
                    - (void)sayHello;
                @end
    
                int sum(int a, int b);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

                        val psiPackage = PsiPackageImpl(PsiManager.getInstance(analysisSession.project), packageFqName.asString())
                        forEachNonKotlinPsiElementFinder(analysisSession.project) { finder ->
                            finder.getClassNames(psiPackage, analysisSession.useSiteAnalysisScope)
                                .mapNotNullTo(this, Name::identifier)
                        }
                    }
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top