Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            project.getPluginManager().apply(ReportingBasePlugin.class);
            project.getPluginManager().apply(JvmToolchainsPlugin.class);
    
            DefaultJavaPluginExtension javaPluginExtension = addExtensions(project);
    
            configureCompileDefaults(project, javaPluginExtension);
            configureSourceSetDefaults(project, javaPluginExtension);
            configureJavaDoc(project, javaPluginExtension);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    		}
    	}
    
    	if in.XPreserveUnknownFields != nil {
    		out.VendorExtensible.AddExtension("x-kubernetes-preserve-unknown-fields", *in.XPreserveUnknownFields)
    	}
    	if in.XEmbeddedResource {
    		out.VendorExtensible.AddExtension("x-kubernetes-embedded-resource", true)
    	}
    	if len(in.XListMapKeys) != 0 {
    		out.VendorExtensible.AddExtension("x-kubernetes-list-map-keys", convertSliceToInterfaceSlice(in.XListMapKeys))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPlugin.java

            project.getPluginManager().apply(DistributionPlugin.class);
    
            JvmFeatureInternal mainFeature = JavaPluginHelper.getJavaComponent(project).getMainFeature();
    
            JavaApplication extension = addExtension(project);
            addRunTask(project, mainFeature, extension);
            addCreateScriptsTask(project, mainFeature, extension);
            configureJavaCompileTask(mainFeature.getCompileJavaTask(), extension);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    		addEmbeddedProperties(ret, opts)
    	}
    	ret.AddExtension(endpoints.RouteMetaGVK, []interface{}{
    		map[string]interface{}{
    			"group":   b.group,
    			"version": b.version,
    			"kind":    b.kind,
    		},
    	})
    
    	if opts.IncludeSelectableFields {
    		if selectableFields := buildSelectableFields(crd, b.version); selectableFields != nil {
    			ret.AddExtension(endpoints.RouteMetaSelectableFields, selectableFields)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java

            Build build = project.getModel().getBuild();
    
            Extension extension = createExtension("other.group", "other-artifact", "1.0");
    
            build.addExtension(extension);
    
            new ProjectSorter(Collections.singletonList(project));
        }
    
        @Test
        void testMatchingArtifactIdsDifferentGroupIds() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    					t.Errorf("expected diff, but didn't get any")
    				}
    			}
    		})
    	}
    }
    
    func withVendorExtensions(s *spec.Schema, key string, value interface{}) *spec.Schema {
    	s.VendorExtensible.AddExtension(key, value)
    	return s
    }
    
    func refEqual(x spec.Ref, y spec.Ref) bool {
    	return x.String() == y.String()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
Back to top