Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,069 for inf2 (0.04 sec)

  1. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

        }
    
        def excludeDuplicatesUseMetaInfOverRegularFiles() {
            createDir('meta-inf1') {
                file 'file.txt'
            }
    
            createDir('meta-inf2') {
                file 'file.txt'
            }
    
            file('meta-inf1/file.txt').text = 'good'
            file('meta-inf2/file.txt').text = 'bad'
    
    
            buildFile << '''
            task jar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            war.assertContainsFile('META-INF/MANIFEST.MF')
            war.assertContainsFile('META-INF/metainf1/file2.txt')
            war.assertContainsFile('content1/file1.jsp')
            war.assertContainsFile('WEB-INF/lib/lib.jar')
            war.assertContainsFile('WEB-INF/classes/org/gradle/resource.txt')
            war.assertContainsFile('WEB-INF/classes/org/gradle/Person.class')
            war.assertContainsFile('WEB-INF/webinf1/file1.txt')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/issues1.go

    	return nil
    }
    
    type List3[TElem any] struct {
    	root Element3[TElem]
    	len  int
    }
    
    // Infinite generic type declarations must lead to an error.
    type inf1[T any] struct{ _ inf1 /* ERROR "invalid recursive type" */ [T] }
    type inf2[T any] struct{ inf2 /* ERROR "invalid recursive type" */ [T] }
    
    // The implementation of conversions T(x) between integers and floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:56:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/info.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cases
    
    func (c info) cccVal() info {
    	if c&exceptionBit != 0 {
    		return info(exceptions[c>>exceptionShift]) & cccMask
    	}
    	return c & cccMask
    }
    
    func (c info) cccType() info {
    	ccc := c.cccVal()
    	if ccc <= cccZero {
    		return cccZero
    	}
    	return ccc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modinfo/info.go

    	GoModSum   string           `json:",omitempty"` // checksum for go.mod (as in go.sum)
    	Origin     *codehost.Origin `json:",omitempty"` // provenance of module
    	Reuse      bool             `json:",omitempty"` // reuse of old module info is safe
    }
    
    type ModuleError struct {
    	Err string // error text
    }
    
    type moduleErrorNoMethods ModuleError
    
    // UnmarshalJSON accepts both {"Err":"text"} and "text",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/caching/package-info.java

     * limitations under the License.
     */
    
    /**
     * Classes for build caches.
     *
     * @since 3.3
     */
    
    // We already have a similar package-info.java in :build-cache-spi
    // We must have a package-info.java for every package directory, but for each package
    // @NonNullApi must only be declared once, otherwise `:docs:javadocAll` fails.
    //@NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:09:36 UTC 2024
    - 946 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/cache_test.go

    func (d dataString) AuthenticatedData() []byte { return []byte(d) }
    
    func Test_simpleCache(t *testing.T) {
    	info1 := []byte{1}
    	info2 := []byte{2}
    	key1 := dataString("1")
    	key2 := dataString("2")
    	twi1 := &transformerWithInfo{info: info1}
    	twi2 := &transformerWithInfo{info: info2}
    
    	tests := []struct {
    		name string
    		test func(*testing.T, *simpleCache, *clocktesting.FakeClock)
    	}{
    		{
    			name: "get from empty",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    func (rb *reorderBuffer) runeAt(n int) rune {
    	inf := rb.rune[n]
    	r, _ := utf8.DecodeRune(rb.byte[inf.pos : inf.pos+inf.size])
    	return r
    }
    
    // bytesAt returns the UTF-8 encoding of the rune at position n.
    // It is used for Hangul and recomposition.
    func (rb *reorderBuffer) bytesAt(n int) []byte {
    	inf := rb.rune[n]
    	return rb.byte[inf.pos : int(inf.pos)+int(inf.size)]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationIntegTest.groovy

                                }
                                extraInfo 'http://my.extra.info1', 'foo', 'fooValue'
                                extraInfo 'http://my.extra.info2', 'bar', 'barValue'
                                withXml {
                                    asNode().info[0].@resolver = 'test'
                                }
                            }
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/testers/package-info.java

    Kurt Alfred Kluever <******@****.***> 1663772761 -0700
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 15:08:35 UTC 2022
    - 103 bytes
    - Viewed (0)
Back to top