Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,194 for Child (0.04 sec)

  1. plugin/pkg/admission/eventratelimit/apis/eventratelimit/validation/validation.go

    				i++
    			}
    			allErrs = append(allErrs, field.NotSupported(idxPath.Child("type"), limit.Type, allowedValues))
    		}
    		if limit.Burst <= 0 {
    			allErrs = append(allErrs, field.Invalid(idxPath.Child("burst"), limit.Burst, "must be positive"))
    		}
    		if limit.QPS <= 0 {
    			allErrs = append(allErrs, field.Invalid(idxPath.Child("qps"), limit.QPS, "must be positive"))
    		}
    		if limit.Type != eventratelimitapi.ServerLimitType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/start.go

    // If telemetryChildVar is set to "1" in the environment, this is the telemetry
    // child.
    //
    // If telemetryChildVar is set to "2", this is a child of the child, and no
    // further forking should occur.
    const telemetryChildVar = "GO_TELEMETRY_CHILD"
    
    // If telemetryUploadVar is set to "1" in the environment, the upload token has been
    // acquired by the parent, and the child should attempt an upload.
    const telemetryUploadVar = "GO_TELEMETRY_CHILD_UPLOAD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ArchiveTaskPermissionsIntegrationTest.groovy

                }
                """
            when:
            run "pack"
            file(archName).usingNativeTools()."$unpackMethod"(file("build"))
            then:
            file("build/child").mode == 0777
            file("build/child/reference.txt").mode == 0746
            where:
            taskName | unpackMethod
            "Zip"    | "unzipTo"
            "Tar"    | "untarTo"
        }
    
        @Requires(UnitTestPreconditions.FilePermissions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 06:18:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/generator/XmlPersistableConfigurationObject.java

            Node child = findFirstChildNamed(root, name);
            if (child == null) {
                child = root.appendNode(name);
            }
            return child;
        }
    
        public static Node findOrCreateFirstChildWithAttributeValue(@Nullable Node root, String childName, String attribute, String value) {
            Node child = findFirstChildWithAttributeValue(root, childName, attribute, value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/developers-inheritance/child-2/pom.xml

      <!--
      While <developers> are inherited, they are not aggregated, only the child elements are used.
      -->
    
      <parent>
        <groupId>org.apache.maven.its.mng3843</groupId>
        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
      <groupId>org.apache.maven.its.mng3843.child</groupId>
      <artifactId>child-2</artifactId>
      <version>0.2</version>
      <packaging>jar</packaging>
    
      <developers>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/BuildProgressCrossVersionSpec.groovy

            orphans.findAll { it.descriptor.name.startsWith('Unmanaged thread operation #') } == orphans
            orphans[0].child "Download ${module.rootMetaData.uri}"
            orphans[1].child "Download ${module.rootMetaData.sha1.uri}"
            orphans[2].child "Download ${module.rootMetaData.uri}"
            orphans[3].child "Download ${module.rootMetaData.sha1.uri}"
        }
    
        MavenHttpRepository getMavenHttpRepo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

                childDirName = "other-child"
                println "src dir 2: " + srcDir.get()
                println "output dir 2: " + outputDir.get()
    """
    
            when:
            run()
    
            then:
            outputContains("src dir 1: " + testDirectory.file("src/child"))
            outputContains("output dir 1: " + testDirectory.file("build/child"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. src/syscall/exec_linux.go

    		// If we're in the parent, we must return immediately
    		// so we're not in the same stack frame as the child.
    		// This can at most use the return PC, which the child
    		// will not modify, and the results of
    		// rawVforkSyscall, which must have been written after
    		// the child was replaced.
    		return
    	}
    
    	// Fork succeeded, now in child.
    
    	// Enable the "keep capabilities" flag to set ambient capabilities later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/syscall/exec_unix.go

    //
    // It is worse to inherit some file descriptors than others.
    // If a non-malicious child accidentally inherits an open ordinary file,
    // that's not a big deal. On the other hand, if a long-lived child
    // accidentally inherits the write end of a pipe, then the reader
    // of that pipe will not see EOF until that child exits, potentially
    // causing the parent program to hang. This is a common problem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPluginTest.groovy

        }
    
        def "adds extension to child project"() {
            def child = ProjectBuilder.builder().withParent(project).withProjectDir(projectDir).withName("child").build()
    
            when:
            child.pluginManager.apply(VisualStudioPlugin)
    
            then:
            child.visualStudio instanceof VisualStudioExtension
        }
    
        def "adds 'openVisualStudio' task"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top