Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,901 for know (0.16 sec)

  1. src/cmd/vendor/golang.org/x/text/language/doc.go

    // as deprecated subtags, legacy tags, macro languages, mutual
    // intelligibility between scripts and languages, and transparently passing
    // BCP 47 user configuration.
    // For instance, it will know that a reader of Bokmål Danish can read Norwegian
    // and will know that Cantonese ("yue") is a good match for "zh-HK".
    //
    // # Using match results
    //
    // To guarantee a consistent user experience to the user it is important to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

              - ${toolChain.instanceDisplayName}:
                  - Don't know how to build for platform 'unknown'.
      - static library 'hello:staticLibrary':
          - No tool chain is available to build for platform 'unknown':
              - ${toolChain.instanceDisplayName}:
                  - Don't know how to build for platform 'unknown'.
      - executable 'main:executable':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_libinit.c

    			x_cgo_pthread_key_created = 1;
    		}
    
    
    		// TODO(iant): For the case of a new C thread calling into Go, such
    		// as when using -buildmode=c-archive, we know that Go runtime
    		// initialization is complete but we do not know that all Go init
    		// functions have been run. We should not fetch cgo_context_function
    		// until they have been, because that is where a call to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/godefs.go

    			s := s.(*ast.TypeSpec)
    			n := refName[&s.Type]
    			if n != nil && n.Mangle != "" {
    				override[n.Mangle] = s.Name.Name
    			}
    		}
    	}
    
    	// Extend overrides using typedefs:
    	// If we know that C.xxx should format as T
    	// and xxx is a typedef for yyy, make C.yyy format as T.
    	for typ, def := range typedef {
    		if new := override[typ]; new != "" {
    			if id, ok := def.Go.(*ast.Ident); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerRegistryTest.groovy

            def serializer = registry.build(Object)
    
            when:
            toBytes(123.4, serializer)
    
            then:
            IllegalArgumentException e = thrown()
            e.message == "Don't know how to serialize an object of type java.math.BigDecimal."
        }
    
        def "cannot get serializer when no matching types have been registered"() {
            given:
            def registry = new DefaultSerializerRegistry()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_find.txt

    # It might not find the same cached sources as "go build", but the sources
    # should be identical. "go build" derives action IDs (which are used as cache
    # keys) from dependencies' action IDs. "go list -find" won't know what the
    # dependencies are, so it's can't construct the same action IDs.
    [short] skip
    go list -find -compiled net
    go list -find -compiled -x net
    ! stderr 'cgo'
    
    -- x/y/z/z.go --
    package z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 748 bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/failing-test.yaml

      - type: textarea
        id: reason
        attributes:
          label: Reason for failure (if possible)
    
      - type: textarea
        id: additional
        attributes:
          label: Anything else we need to know?
    
      - type: textarea
        id: sigs
        attributes:
          label: Relevant SIG(s)
          description: You can identify the SIG from the "prowjob_config_url" on the testgrid dashboard for a test.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue52612.go

    	for i := 0; i < 100000; i++ {
    		v := x.Load() // reading using the new marker
    
    		p := (*eface)(unsafe.Pointer(&v)).typ
    		if uintptr(p) == ^uintptr(0) {
    			// We read the old marker, which the new reader
    			// doesn't know is a case where it should retry
    			// instead of returning it.
    			panic("bad typ field")
    		}
    	}
    	c <- struct{}{}
    }
    
    func main() {
    	c := make(chan struct{}, 10)
    	for i := 0; i < 10; i++ {
    		go f(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 20:42:52 UTC 2022
    - 881 bytes
    - Viewed (0)
  9. src/internal/trace/internal/oldtrace/order.go

    		// as the corresponding EvGoCreate/EvGoUnblock, and thus the latter
    		// is already merged).
    		// seqinc is a stub for cases when event increments g sequence,
    		// but since we don't know current seq we also don't know next seq.
    		g = ev.G
    		init = gState{noseq, gRunnable}
    		next = gState{seqinc, gRunning}
    		return
    	case EvGoBlock, EvGoBlockSend, EvGoBlockRecv, EvGoBlockSelect,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1beta2/conversion.go

    	out.Replicas = in.Replicas
    
    	// Normally when 2 fields map to the same internal value we favor the old field, since
    	// old clients can't be expected to know about new fields but clients that know about the
    	// new field can be expected to know about the old field (though that's not quite true, due
    	// to kubectl apply). However, these fields are readonly, so any non-nil value should work.
    	if in.TargetSelector != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top