Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 287 for biases (0.34 sec)

  1. hack/update-import-aliases.sh

    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script fixes imports programmatically according to
    # all the imports that we have our preferred alias(es).
    # Usage: `hack/update-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/aliases.go

    Michael Matloob <******@****.***> 1715181059 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 281 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/aliases.go

    Michael Matloob <******@****.***> 1709746618 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 385 bytes
    - Viewed (0)
  4. hack/.import-aliases

    SataQiu <******@****.***> 1692249135 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 17 05:27:21 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/bitset.go

    cuiweixie <******@****.***> 1664452800 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:03:56 UTC 2022
    - 734 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go gen_trieval.go
    
    // Package cases provides general and language-specific case mappers.
    package cases // import "golang.org/x/text/cases"
    
    import (
    	"golang.org/x/text/language"
    	"golang.org/x/text/transform"
    )
    
    // References:
    // - Unicode Reference Manual Chapter 3.13, 4.2, and 5.18.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/coverage.go

    type coverage struct {
    	tags    func() []Tag
    	bases   func() []Base
    	scripts func() []Script
    	regions func() []Region
    }
    
    func (s *coverage) Tags() []Tag {
    	if s.tags == nil {
    		return nil
    	}
    	return s.tags()
    }
    
    // bases implements sort.Interface and is used to sort base languages.
    type bases []Base
    
    func (b bases) Len() int {
    	return len(b)
    }
    
    func (b bases) Swap(i, j int) {
    	b[i], b[j] = b[j], b[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/noder/posmap.go

    		} else {
    			// line directive base
    			p0 := b0.Pos()
    			p0b := p0.Base()
    			if p0b == b0 {
    				panic("infinite recursion in makeSrcPosBase")
    			}
    			p1 := src.MakePos(m.makeSrcPosBase(p0b), p0.Line(), p0.Col())
    			b1 = src.NewLinePragmaBase(p1, fn, absfn, b0.Line(), b0.Col())
    		}
    		if m.bases == nil {
    			m.bases = make(map[*syntax.PosBase]*src.PosBase)
    		}
    		m.bases[b0] = b1
    	}
    
    	// update cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 27 03:43:35 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/issue44956/base/base.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package base
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 205 bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/Base.java

    import java.io.Serializable;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Simple base class to verify that we handle generics correctly. */
    @GwtCompatible
    class Base implements Comparable<Base>, Serializable {
      private final String s;
    
      public Base(String s) {
        this.s = s;
      }
    
      @Override
      public int hashCode() { // delegate to 's'
        return s.hashCode();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 22:29:45 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top