Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for AddResource (0.24 sec)

  1. pkg/apis/core/v1/helper/qos/qos_test.go

    			}),
    			expected: v1.PodQOSBurstable,
    		},
    		{
    			pod: newPod("best-effort-hugepages", []v1.Container{
    				newContainer("best-effort", addResource("hugepages-2Mi", "1Gi", getResourceList("0", "0")), addResource("hugepages-2Mi", "1Gi", getResourceList("0", "0"))),
    			}),
    			expected: v1.PodQOSBestEffort,
    		},
    		{
    			pod: newPodWithInitContainers("init-container",
    				[]v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 14:47:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

                return prj.getBuild().getTestResources();
            } else {
                throw new IllegalArgumentException("Unsupported scope " + scope);
            }
        }
    
        @Override
        public void addResource(@Nonnull Project project, @Nonnull ProjectScope scope, @Nonnull Resource resource) {
            // TODO: we should not modify the underlying model here, but resources should be stored
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/graal/OkHttpFeature.kt

     *
     * Currently, includes all necessary resources.
     */
    class OkHttpFeature : Feature {
      @IgnoreJRERequirement
      override fun beforeAnalysis(access: Feature.BeforeAnalysisAccess?) {
        RuntimeResourceAccess.addResource(
          ClassLoader.getSystemClassLoader().getUnnamedModule(),
          "okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz",
        )
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/apply.go

    	for _, obj := range allObjects {
    		oh := obj.Hash()
    		allObjectsMap[oh] = true
    		if co, ok := objectCache.Cache[oh]; ok && obj.Equal(co) {
    			// Object is in the cache and unchanged.
    			metrics.AddResource(obj.FullName(), obj.GroupVersionKind().GroupKind())
    			result.deployed++
    			continue
    		}
    		changedObjects = append(changedObjects, obj)
    		changedObjectKeys = append(changedObjectKeys, oh)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/GenerateProjectFileTask.java

            for (File sourceFile : vsProject.getSourceFiles()) {
                projectFile.addSourceFile(sourceFile);
            }
    
            for (File resourceFile : vsProject.getResourceFiles()) {
                projectFile.addResource(resourceFile);
            }
    
            for (File headerFile : vsProject.getHeaderFiles()) {
                projectFile.addHeaderFile(headerFile);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFile.groovy

        }
    
        def addSourceFile(File it) {
            def sources = xml.ItemGroup.find({ it.'@Label' == 'Sources' }) as Node
            sources.appendNode("ClCompile", [Include: toPath(it)])
        }
    
        def addResource(File it) {
            def resources = xml.ItemGroup.find({ it.'@Label' == 'References' }) as Node
            resources.appendNode("ResourceCompile", [Include: toPath(it)])
        }
    
        def addHeaderFile(File it) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
         * @param resource the resource set to add
         */
        void addResource(@Nonnull Project project, @Nonnull ProjectScope scope, @Nonnull Resource resource);
    
        /**
         * Returns an immutable list of project remote repositories (directly specified or inherited).
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top