Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 144 for remSign (0.4 sec)

  1. src/go/doc/testdata/error1.0.golden

    // 
    PACKAGE error1
    
    IMPORTPATH
    	testdata/error1
    
    FILENAMES
    	testdata/error1.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the predeclared error interface
    		// must remain visible in interface types.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// error should be visible
    			error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 390 bytes
    - Viewed (0)
  2. src/go/doc/testdata/error1.2.golden

    // 
    PACKAGE error1
    
    IMPORTPATH
    	testdata/error1
    
    FILENAMES
    	testdata/error1.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the predeclared error interface
    		// must remain visible in interface types.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// error should be visible
    			error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 390 bytes
    - Viewed (0)
  3. test/fixedbugs/issue30243.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Compile-time constants, even if they cannot be represented
    // accurately, should remain the same in operations that don't
    // affect their values.
    
    package main
    
    import "fmt"
    
    func main() {
    	const x = 0.01
    	const xi = 0.01i
    	const xc = complex(0, x)
    
    	if imag(xi) != x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 21:05:17 UTC 2019
    - 578 bytes
    - Viewed (0)
  4. src/runtime/memclr_ppc64x.s

    	DCBZ (R3+R10)       // clear third chunk
    	DCBZ (R3+R11)       // clear fourth chunk
    	ADD  $512, R3
    	BDNZ zero512
    	ANDCC $511, R4
    
    remain:
    	CMP  R4, $128  // check if 128 byte chunks left
    	BLT  smaller
    	DCBZ (R3+R0)   // clear 128
    	ADD  $128, R3
    	ADD  $-128, R4
    	BR   remain
    
    smaller:
    	ANDCC $127, R4, R7 // find leftovers
    	BEQ   done
    	CMP   R7, $64      // more than 64, do 64 at a time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. src/syscall/js/js_js.s

    // license that can be found in the LICENSE file.
    
    // The runtime package uses //go:linkname to push the setEventHandler to this
    // package.  To prevent the go tool from passing -complete to the compile tool,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 356 bytes
    - Viewed (0)
  6. cmd/service.go

    // For each call, unfreezeServices must be called once.
    func freezeServices() {
    	// Use atomics for globalServiceFreeze, so we can read without locking.
    	// We need a lock since we are need the 2 atomic values to remain in sync.
    	globalServiceFreezeMu.Lock()
    	// If multiple calls, first one creates channel.
    	globalServiceFreezeCnt++
    	if globalServiceFreezeCnt == 1 {
    		globalServiceFreeze.Store(make(chan struct{}))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/go/doc/testdata/error1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package error1
    
    type I0 interface {
    	// When embedded, the predeclared error interface
    	// must remain visible in interface types.
    	error
    }
    
    type T0 struct {
    	ExportedField interface {
    		// error should be visible
    		error
    	}
    }
    
    type S0 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 498 bytes
    - Viewed (0)
  8. test/fixedbugs/issue26024.go

    // compile
    // Copyright 2018 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 r
    
    // f compiles into code where no stores remain in the two successors
    // of a write barrier block; i.e., they are empty. Pre-fix, this
    // results in an unexpected input to markUnsafePoints, that expects to
    // see a pair of non-empty plain blocks.
    func f() {
    	var i int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 19:06:09 UTC 2018
    - 614 bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtTypeMappingMode.kt

        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         * No projections allowed in immediate arguments
         */
        SUPER_TYPE,
    
        /**
         * Similar to [SUPER_TYPE], except for that Kotlin collections remain as-is.
         */
        SUPER_TYPE_KOTLIN_COLLECTIONS_AS_IS,
    
        /**
         * When method return type should be boxed (e.g., kotlin.Int to Ljava/lang/Integer;)
         */
        RETURN_TYPE_BOXED,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/PercentEscaper.java

    import javax.annotation.CheckForNull;
    
    /**
     * A {@code UnicodeEscaper} that escapes some set of Java characters using a UTF-8 based percent
     * encoding scheme. The set of safe characters (those which remain unescaped) can be specified on
     * construction.
     *
     * <p>This class is primarily used for creating URI escapers in {@link UrlEscapers} but can be used
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top