Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for someWar (0.27 sec)

  1. guava-gwt/pom.xml

                could postprocess Collect.gwt.xml to add <skip> lines for all the files that should be
                covered by testModule.gwt.xml. Maybe I'll try it someday.
    
                [*] https://code.google.com/p/google-web-toolkit/wiki/ResourceOracle#When_multiple_PathPrefix_es_have_the_same_path
                    https://code.google.com/p/google-web-toolkit/issues/detail?id=7581
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

        }
    }
    
    class CallsMethodDuringConstruction {
    
        Class setAtFieldInit = getClass()
        Map<String, String> someMap = [:]
        Class setDuringConstructor
    
        CallsMethodDuringConstruction() {
            setDuringConstructor = setAtFieldInit
            someMap['a'] = 'b'
            assert setDuringConstructor
        }
    }
    
    class UsesInheritedPropertiesDuringConstruction extends TestJavaObject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

        }
    
        @Issue('GRADLE-3511')
        def 'Filename #filename is properly masked when adding it as #antType to an ant task'(String filename, antType) {
            given:
            def dirname = 'somedir$$with'
            def dirAndFile = "${dirname}/${filename}"
            project.file(dirname).mkdir()
            File fileWithDollars = project.file(dirAndFile)
            fileWithDollars << "Some Text"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/generate/generate_test.go

    var undefEnvList = []string{
    	"_XYZZY_",
    }
    
    // These environment variables will be defined before the splitTestWithLine tests
    var defEnvMap = map[string]string{
    	"_PLUGH_": "SomeVal",
    	"_X":      "Y",
    }
    
    // TestGenerateCommandShortHand - similar to TestGenerateCommandParse,
    // except:
    //  1. if the result starts with -command, record that shorthand
    //     before moving on to the next test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RegularImmutableMultiset.java

          Entry<E> entry = (Entry<E>) entryWithWildcard;
          E element = checkNotNull(entry.getElement());
          int count = entry.getCount();
          int hash = element.hashCode();
          int bucket = Hashing.smear(hash) & mask;
          ImmutableEntry<E> bucketHead = hashTable[bucket];
          ImmutableEntry<E> newEntry;
          if (bucketHead == null) {
            boolean canReuseEntry =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/UriTextResourceTest.groovy

            e.message == "Could not read <display-name> '$file' as it does not exist." as String
        }
    
        def hasNoContentWhenFileIsADirectory() {
            when:
            TestFile dir = testDir.file('somedir').createDir()
            UriTextResource resource = new UriTextResource('<display-name>', dir, resolver)
    
            then:
            resource.exists
    
            when:
            resource.text
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. src/runtime/sys_solaris_amd64.s

    	MOVQ	SP, AX
    	MOVQ	AX, (g_stack+stack_hi)(DX)
    	SUBQ	$(0x100000), AX		// stack size
    	MOVQ	AX, (g_stack+stack_lo)(DX)
    	ADDQ	$const_stackGuard, AX
    	MOVQ	AX, g_stackguard0(DX)
    	MOVQ	AX, g_stackguard1(DX)
    
    	// Someday the convention will be D is always cleared.
    	CLD
    
    	CALL	runtime·stackcheck(SB)	// clobbers AX,CX
    	CALL	runtime·mstart(SB)
    
    	XORL	AX, AX			// return 0 == success
    	MOVL	AX, ret+8(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/runtime/sys_windows_386.s

    	MOVL	AX, g_stackguard0(DX)
    	MOVL	AX, g_stackguard1(DX)
    
    	// Set up tls.
    	LEAL	m_tls(CX), DI
    	MOVL	CX, g_m(DX)
    	MOVL	DX, g(DI)
    	MOVL	DI, 4(SP)
    	CALL	runtime·setldt(SB) // clobbers CX and DX
    
    	// Someday the convention will be D is always cleared.
    	CLD
    
    	CALL	runtime·stackcheck(SB)	// clobbers AX,CX
    	CALL	runtime·mstart(SB)
    
    	RET
    
    // uint32 tstart_stdcall(M *newm);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            @Unmanaged
            InputStream getThing();
    
            void setThing(InputStream inputStream);
        }
    
        interface SomeMap extends ModelMap<List<String>> {
        }
    
        def "specialized map"() {
            expect:
            def schema = extract(SomeMap)
            assert schema instanceof SpecializedMapSchema
            schema.elementType == new ModelType<List<String>>() {}
            schema.implementationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  10. build/README.md

    variable](https://reproducible-builds.org/specs/source-date-epoch/) specified by
    the Reproducible Builds project, which can be set to a UNIX epoch timestamp.
    This will be used for the build timestamps embedded in compiled Go binaries,
    and maybe someday also Docker images.
    
    One reasonable setting for this variable is to use the commit timestamp from the
    tip of the tree being built; this is what the Kubernetes CI system uses. For
    example, you could use the following one-liner:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top