Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,121 for below (0.15 sec)

  1. src/internal/types/testdata/fixedbugs/issue51232.go

    	return c.makeFn()
    }
    
    func NewConcrete[RCT RC[RG], RG any](Rc RCT) F /* ERROR "not enough type arguments for type F: have 1, want 2" */ [RCT] {
    	// TODO(rfindley): eliminate the duplicate error below.
    	return & /* ERRORx `cannot use .* as F\[RCT\]` */ concreteF /* ERROR "not enough type arguments for type concreteF: have 1, want 2" */ [RCT]{
    		makeFn: nil,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 989 bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/RequestWithPath.java

     */
    package jcifs.internal;
    
    
    /**
     * @author mbechler
     *
     */
    public interface RequestWithPath extends CommonServerMessageBlock {
    
        /**
         * @return the path to the resource (below share)
         */
        String getPath ();
    
    
        /**
         * 
         * @return the server name
         */
        String getServer ();
    
    
        /**
         * 
         * @return the domain name
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

    name: Feature request
    description: Suggest an idea for this project
    labels: [ "a:feature", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please follow the instructions below.
            We receive dozens of issues every week, so to stay productive, we will close issues that don't provide enough information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 11:10:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu_arm64_darwin.go

    	ARM64.HasCRC32 = sysctlEnabled([]byte("hw.optional.armv8_crc32\x00"))
    	ARM64.HasSHA512 = sysctlEnabled([]byte("hw.optional.armv8_2_sha512\x00"))
    
    	// There are no hw.optional sysctl values for the below features on Mac OS 11.0
    	// to detect their supported state dynamically. Assume the CPU features that
    	// Apple Silicon M1 supports to be available as a minimal set of features
    	// to all Go programs running on darwin/arm64.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. test/rename.go

    			uintptr +
    			iota
    	if n != NUM*(NUM-1)/2 {
    		fmt.Println("BUG: wrong n", n, NUM*(NUM-1)/2)
    		runtime.Breakpoint() // panic is inaccessible
    	}
    }
    
    const (
    	// cannot use iota here, because iota = 38 below
    	append     = 1
    	bool       = 2
    	byte       = 3
    	complex    = 4
    	complex64  = 5
    	complex128 = 6
    	cap        = 7
    	close      = 8
    	delete     = 9
    	error      = 10
    	false      = 11
    	float32    = 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue50426.go

    	// (was the bug).
    	f[int](v)
    }
    
    // Keep using constraint type inference before function type
    // inference for untyped arguments so we infer type float64
    // for E below, and not int (which would not work).
    func g[S ~[]E, E any](S, E) {}
    
    func _() {
    	var s []float64
    	g[[]float64](s, 0)
    }
    
    // Keep using constraint type inference after function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/conversion.go

    	if err := autoConvert_apps_Deployment_To_v1_Deployment(in, out, s); err != nil {
    		return err
    	}
    
    	out.Annotations = deepCopyStringMap(out.Annotations) // deep copy because we modify it below
    
    	// Copy deprecated rollbackTo field to annotation for roundtrip
    	// TODO: remove this conversion after we delete extensions/v1beta1 and apps/v1beta1 Deployment
    	if in.Spec.RollbackTo != nil {
    		if out.Annotations == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  8. docs/compression/README.md

    Write throughput is typically at least 500MB/s per CPU core,
    and scales with the number of available CPU cores.
    Decompression speed is typically at least 1GB/s.
    
    This means that in cases where raw IO is below these numbers
    compression will not only reduce disk usage but also help increase system throughput.
    Typically, enabling compression on spinning disk systems
    will increase speed when the content can be compressed.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    [[sec:swift_application_conventions]]
    == Conventions
    
    The Swift Application Plugin adds conventions for sources and tasks, shown below.
    
    [[sec:swift_application_layout]]
    === Project layout
    
    The Swift Application Plugin assumes the project layout shown below.
    None of these directories need to exist or have anything in them.
    The Swift Application Plugin will compile whatever it finds and ignore anything missing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue19137.go

    	return [20]byte{}, [20]byte{} // the second return value is not 8-byte aligned to SP
    }
    
    // Issue 21992: unaligned offset between 256 and 504 and handled
    // incorrectly.
    type T2 struct {
    	a [257]byte
    	// fields below are not 8-, 4-, 2-byte aligned
    	b [8]byte
    	c [4]byte
    	d [2]byte
    }
    
    func f2(x *T2) {
    	x.b = [8]byte{}
    	x.c = [4]byte{}
    	x.d = [2]byte{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 22:28:17 UTC 2017
    - 1.1K bytes
    - Viewed (0)
Back to top