Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 192 for addsym (0.1 sec)

  1. src/time/time.go

    	}
    	return t.ext
    }
    
    // unixSec returns the time's seconds since Jan 1 1970 (Unix time).
    func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
    
    // addSec adds d seconds to the time.
    func (t *Time) addSec(d int64) {
    	if t.wall&hasMonotonic != 0 {
    		sec := int64(t.wall << 1 >> (nsecShift + 1))
    		dsec := sec + d
    		if 0 <= dsec && dsec <= 1<<33-1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/value.go

    		return fmt.Sprintf(" [lsb=%d,width=%d]", lsb, width)
    	case auxFloat32, auxFloat64:
    		return fmt.Sprintf(" [%g]", v.AuxFloat())
    	case auxString:
    		return fmt.Sprintf(" {%q}", v.Aux)
    	case auxSym, auxCall, auxTyp:
    		if v.Aux != nil {
    			return fmt.Sprintf(" {%v}", v.Aux)
    		}
    		return ""
    	case auxSymOff, auxCallOff, auxTypSize, auxNameOffsetInt8:
    		s := ""
    		if v.Aux != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        void assertCanExecute() throws AssertionError;
    
        /**
         * Adds an action to be called immediately before execution, to allow extra configuration to be injected.
         */
        void beforeExecute(Action<? super GradleExecuter> action);
    
        /**
         * Adds an action to be called immediately before execution, to allow extra configuration to be injected.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. test/codegen/mathbits.go

    }
    
    func Add64R(x, y, ci uint64) uint64 {
    	// arm64:"ADDS","ADCS",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ",-"SBBQ",-"NEGQ"
    	// loong64: "ADDV", -"SGTU"
    	// ppc64x: "ADDC", "ADDE", -"ADDZE"
    	// s390x:"ADDE","ADDC\t[$]-1,"
    	// mips64:"ADDV",-"SGTU"
    	// riscv64: "ADD",-"SLTU"
    	r, _ := bits.Add64(x, y, ci)
    	return r
    }
    
    func Add64M(p, q, r *[3]uint64) {
    	var c uint64
    	r[0], c = bits.Add64(p[0], q[0], c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256block_amd64.s

    	VMOVDQU XDWORD3, XDWORD1
    
    	CMPQ SRND, $4*4*32
    	JB   avx2_loop2
    
    	MOVQ dig+0(FP), CTX // d.h[8]
    	MOVQ _INP(SP), INP
    
    	addm(  0(CTX), a)
    	addm(  4(CTX), b)
    	addm(  8(CTX), c)
    	addm( 12(CTX), d)
    	addm( 16(CTX), e)
    	addm( 20(CTX), f)
    	addm( 24(CTX), g)
    	addm( 28(CTX), h)
    
    	CMPQ _INP_END(SP), INP
    	JB   done_hash
    
    	XORQ SRND, SRND
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_TRANSFORMS_TF_STABLEHLO_PASS_H_
    
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    
    namespace mlir {
    namespace odml {
    
    // Adds passes which transform TF Ops to StableHLO Ops.
    void AddLegalizeTFToStablehloPasses(OpPassManager& pm,
                                        bool skip_quantization_ops,
                                        bool skip_resize,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 20:05:12 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/build.gradle.kts

        integTestImplementation(libs.groovyTest)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics")) {
            because("Requires test-kit: 'java-gradle-plugin' is used in integration tests which always adds the test-kit dependency.")
        }
    }
    
    testFilesCleanup.reportOnly = true
    
    description = """Provides functionality for resolving and managing plugins during their application to projects."""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pkg/config/analysis/local/istiod_analyze.go

    	sa.suppressions = suppressions
    }
    
    // AddTestReaderKubeSource adds a yaml source to the analyzer, which will analyze
    // runtime resources like pods and namespaces for use in tests.
    func (sa *IstiodAnalyzer) AddTestReaderKubeSource(readers []ReaderSource) error {
    	return sa.addReaderKubeSourceInternal(readers, true)
    }
    
    // AddReaderKubeSource adds a source based on the specified k8s yaml files to the current IstiodAnalyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. pkg/apis/discovery/install/install.go

    	v1 "k8s.io/kubernetes/pkg/apis/discovery/v1"
    	"k8s.io/kubernetes/pkg/apis/discovery/v1beta1"
    )
    
    func init() {
    	Install(legacyscheme.Scheme)
    }
    
    // Install registers the API group and adds types to a scheme
    func Install(scheme *runtime.Scheme) {
    	utilruntime.Must(discovery.AddToScheme(scheme))
    	utilruntime.Must(v1beta1.AddToScheme(scheme))
    	utilruntime.Must(v1.AddToScheme(scheme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 06:31:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/jvm/java-platform/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for creating dependency platforms for JVM projects"
    
    errorprone {
        disabledChecks.addAll(
            "InlineFormatString", // 1 occurrences
        )
    }
    
    dependencies {
        api(project(":core-api"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top