Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,840 for rparenth (0.22 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom.md5

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 40 bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

        }
    
        /**
         * Makes the parent directory of the file, and any non existent parents.
         *
         * @param child The file to create the parent dir for
         * @return The parent dir file
         * @see #mkdirs(java.io.File)
         */
        public static File parentMkdirs(File child) {
            File parent = child.getParentFile();
            mkdirs(parent);
            return parent;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/WorkInProgressRendererTest.groovy

            1 * listener.onOutput(event2)
            0 * _
        }
    
        def "test completing children of offscreen parents"() {
            // This test confirms that when a child task is completed for a
            // parent task that is currently offscreen, that we don't accumulate
            // additional copies of that pending parent task to show later
            when:
            // start 1 and 2
            renderer.onOutput(start(id: 1, status: ":one"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/child-with-bogus-parent.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <model>
    
      <extend>${basedir}/bogus.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>bogus</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 947 bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/validation/raw-model/bad-parent-version-latest.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>com.example.group</groupId>
        <artifactId>com-parent</artifactId>
        <version>LATEST</version>
      </parent>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-wrong</artifactId>
      <version>1.0</version>
    
      <description>
        This will test if the validation for the parent version
        is working correct in case of usage of LATEST
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/weighted.status.yaml.golden

          kind: TCPRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultLenientConfigurationTest.groovy

            @Override
            Set<ResolvedArtifact> getParentArtifacts(ResolvedDependency parent) {
                return null
            }
    
            @Override
            Set<ResolvedArtifact> getArtifacts(ResolvedDependency parent) {
                return null
            }
    
            @Override
            Set<ResolvedArtifact> getAllArtifacts(ResolvedDependency parent) {
                return null
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/BuildInputHierarchy.java

                // A parent directory to the input is not an input.
                // As long as nothing within the input location changes we don't need to trigger a build.
                // If we would consider the parents as inputs, then the creation of parent directories for
                // an output file produced by the current build would directly trigger, though actually
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubeletconfig/util/files/files_test.go

    	if f.mode.IsDir() {
    		if err := fs.MkdirAll(path, defaultPerm); err != nil {
    			return err
    		}
    	} else if f.mode.IsRegular() {
    		// create parent directories, if necessary
    		parents := filepath.Dir(path)
    		if err := fs.MkdirAll(parents, defaultPerm); err != nil {
    			return err
    		}
    		// create the file
    		handle, err := fs.Create(path)
    		if err != nil {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
Back to top