Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for addExtensions (0.24 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    	if x.XPreserveUnknownFields {
    		ret.VendorExtensible.AddExtension("x-kubernetes-preserve-unknown-fields", true)
    	}
    	if x.XEmbeddedResource {
    		ret.VendorExtensible.AddExtension("x-kubernetes-embedded-resource", true)
    	}
    	if x.XIntOrString {
    		ret.VendorExtensible.AddExtension("x-kubernetes-int-or-string", true)
    	}
    	if len(x.XListMapKeys) > 0 {
    		ret.VendorExtensible.AddExtension("x-kubernetes-list-map-keys", x.XListMapKeys)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISession.kt

        public val createPackagePartProvider: (GlobalSearchScope) -> PackagePartProvider,
        modulesWithFilesProvider: () -> Map<KtSourceModule, List<PsiFile>>
    ) {
        // TODO: better to limit exposure? Current usages are: addExtension, jarFileSystem
        public val coreApplicationEnvironment: CoreApplicationEnvironment = kotlinCoreProjectEnvironment.environment
    
        public val application: Application = kotlinCoreProjectEnvironment.environment.application
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf_mlir_reduce_main.cc

      }
    };
    
    }  // namespace
    
    int main(int argc, char *argv[]) {
      tensorflow::InitMlir y(&argc, &argv);
    
      mlir::DialectRegistry registry;
      mlir::RegisterCommonToolingDialects(registry);
    
      registry.addExtension(
          +[](mlir::MLIRContext *ctx, mlir::TF::TensorFlowDialect *dialect) {
            dialect->addInterfaces<TFReductionPatternInterface>();
          });
    
      mlir::MLIRContext context(registry);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 20:13:57 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top