Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 299 for 1104 (0.03 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus</artifactId>
      <packaging>pom</packaging>
      <name>Plexus</name>
      <version>1.0.4</version>
      <ciManagement>
        <notifiers>
          <notifier>
            <type>mail</type>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
          <notifier>
            <type>irc</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus</artifactId>
      <packaging>pom</packaging>
      <name>Plexus</name>
      <version>1.0.4</version>
      <ciManagement>
        <notifiers>
          <notifier>
            <type>mail</type>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
          <notifier>
            <type>irc</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 5.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: Brett Build-Jdk: 1.5.0_04 Extension-Name: plexus-utils Specification-Vendor: Codehaus Implementation-Vendor: Codehaus Implementation-Title: plexus-utils Implementation-Version: 1.0.4 org/codehaus/plexus/util/xml/PrettyPrintXMLWriter.class package org.codehaus.plexus.util.xml; public synchronized class PrettyPrintXMLWriter implements XMLWriter { private java.io.PrintWriter writer; private java.util.LinkedList elementStack; private...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.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)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

            then:
            result.available
            result.component.name == "Visual Studio 11.0.0"
            result.component.version == VersionNumber.parse("11.0")
            result.component.baseDir == vsDir1
    
            when:
            result = visualStudioLocator.locateComponent(vsDir2)
    
            then:
            result.available
            result.component.name == "Visual Studio 14.0.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <name>Logging</name>
      <version>1.0.4</version>
      <description>Commons Logging is a thin adapter allowing configurable bridging to other,
        well known logging systems.</description>
      <url>http://jakarta.apache.org/commons/logging/</url>
      <issueManagement>
        <url>http://issues.apache.org/bugzilla/</url>
      </issueManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.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)
  8. test/fixedbugs/issue4232.go

    	_ = a[11:12]           // ERROR "invalid slice index 11|index .*out of bounds"
    	_ = a[1<<100 : 1<<110] // ERROR "overflows int|integer constant overflow|invalid slice index 1 << 100|index out of bounds"
    
    	var s []int
    	_ = s[-1]  // ERROR "invalid slice index -1|index .*out of bounds|must not be negative"
    	_ = s[-1:] // ERROR "invalid slice index -1|index .*out of bounds|must not be negative"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/metrics/utilization_test.go

    	tc := resourceUtilizationRatioTestCase{
    		metrics: PodMetricsInfo{
    			"test-pod-0": {Value: 50}, "test-pod-1": {Value: 76},
    		},
    		requests: map[string]int64{
    			"test-pod-0": 100, "test-pod-1": 100,
    		},
    		targetUtilization:          50,
    		expectedUtilizationRatio:   1.26,
    		expectedCurrentUtilization: 63,
    		expectedRawAverageValue:    63,
    		expectedErr:                nil,
    	}
    
    	tc.runTest(t)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 22 08:59:02 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. test/codegen/mapaccess.go

    	// arm64:".*mapaccess"
    	sinkAppend, m[k] = !sinkAppend, append(m[k], 99)
    
    	// 386:".*mapaccess"
    	// amd64:".*mapaccess"
    	// arm:".*mapaccess"
    	// arm64:".*mapaccess"
    	m[k] = append(m[k+1], 100)
    }
    
    func mapAppendAssignmentInt32() {
    	m := make(map[int32][]int32, 0)
    	var k int32 = 0
    
    	// 386:-".*mapaccess"
    	// amd64:-".*mapaccess"
    	// arm:-".*mapaccess"
    	// arm64:-".*mapaccess"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:36:38 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top