Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 728 for extr6 (0.35 sec)

  1. src/internal/trace/oldtrace.go

    // descriptive error for invalid events.
    func (it *oldTraceConverter) next() (Event, error) {
    	if len(it.extra) > 0 {
    		ev := it.extra[0]
    		it.extra = it.extra[1:]
    
    		if len(it.extra) == 0 {
    			it.extra = it.extraArr[:0]
    		}
    		// Two events aren't allowed to fall on the same timestamp in the new API,
    		// but this may happen when we produce EvGoStatus events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

            assert file("metadata").text == "{{http://my.extra.info/bar}bar=barValueChanged, {http://my.extra.info/foo}foo=fooValueChanged}\ndifferentBranch\nmilestone"
        }
    
        private static NamespaceId ns(String name) {
            return new NamespaceId("http://my.extra.info/${name}", name)
        }
    
        private static String declareNS(String name) {
            "(new javax.xml.namespace.QName('http://my.extra.info/${name}', '${name}'))"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/image/gif/reader_test.go

    			// Write the LZW data.
    			b.Write(enc)
    
    			// Write extra bytes inside the same data sub-block where LZW data
    			// ended. Each arbitrarily 0x02.
    			b.WriteString(extra[:tc.extraExisting])
    		}
    
    		if tc.extraSeparate > 0 {
    			// Data sub-block size. This indicates how many extra bytes follow.
    			b.WriteByte(byte(tc.extraSeparate))
    			b.WriteString(extra[:tc.extraSeparate])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			Groups   []string            `json:"groups"`
    			Extra    map[string][]string `json:"extra"`
    		}
    		type status struct {
    			Authenticated bool     `json:"authenticated"`
    			User          userInfo `json:"user"`
    			Audiences     []string `json:"audiences"`
    		}
    
    		var extra map[string][]string
    		if review.Status.User.Extra != nil {
    			extra = map[string][]string{}
    			for k, v := range review.Status.User.Extra {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    ====
    
    [[sec:extra_properties]]
    ==== Extra Properties
    
    Gradle's enhanced objects, including projects, tasks, and source sets, can hold user-defined properties.
    
    [.multi-language-text.lang-kotlin]
    Add, read, and set extra properties via the owning object's `extra` property. Alternatively, you can access extra properties via Kotlin delegated properties using `by extra`.
    
    [.multi-language-text.lang-groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

                accept(usage, 'java-api', 'java-api-extra')
                accept(usage, 'java-api', 'java-runtime-extra')
                prefer(usage, 'java-api-extra')
            }
    
            def candidate1 = attributes(usage: 'java-api-extra', status: 'integration')
            def candidate2 = attributes(usage: 'java-runtime-extra', status: 'integration')
            def candidate3 = attributes(usage: 'java-api-extra', status: 'integration', bundling: value1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    			Groups   []string            `json:"groups"`
    			Extra    map[string][]string `json:"extra"`
    		}
    		type status struct {
    			Authenticated bool     `json:"authenticated"`
    			User          userInfo `json:"user"`
    			Audiences     []string `json:"audiences"`
    		}
    
    		var extra map[string][]string
    		if review.Status.User.Extra != nil {
    			extra = map[string][]string{}
    			for k, v := range review.Status.User.Extra {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  8. src/math/big/prime.go

    	// We apply the "almost extra strong" test, which checks the above conditions
    	// except for U_s ≡ 0 mod n, which allows us to avoid computing any U_k values.
    	// Jacobsen points out that maybe we should just do the full extra strong test:
    	// "It is also possible to recover U_n using Crandall and Pomerance equation 3.13:
    	// U_n = D^-1 (2V_{n+1} - PV_n) allowing us to run the full extra-strong test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            'no exact match but best partial match'                     | [platform: JavaVersion.JAVA8, flavor: 'free'] | [platform: JavaVersion.JAVA8, extra: 'foo']   | [platform: JavaVersion.JAVA6, extra: 'bar']   | 'foo'
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    func (s *LSym) NewFuncInfo() *FuncInfo {
    	if s.Extra != nil {
    		panic(fmt.Sprintf("invalid use of LSym - NewFuncInfo with Extra of type %T", *s.Extra))
    	}
    	f := new(FuncInfo)
    	s.Extra = new(interface{})
    	*s.Extra = f
    	return f
    }
    
    // Func returns the *FuncInfo associated with s, or else nil.
    func (s *LSym) Func() *FuncInfo {
    	if s.Extra == nil {
    		return nil
    	}
    	f, _ := (*s.Extra).(*FuncInfo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top