Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 619 for seal (1.1 sec)

  1. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

        }
    
        @Override
        public void executionStarted(TestIdentifier testIdentifier) {
            // The root node will be "JUnit Jupiter" which isn't expected
            // to be seen as a "real" test suite in many tests, so this
            // test is to make sure we're at least under this event
            if (testIdentifier.getParentId().isPresent()) {
                reportStartedUnlessAlreadyStarted(testIdentifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad_test.cc

            y = Acos(scope_, x);
            break;
          case TAN:
            y = Tan(scope_, x);
            break;
          case ATAN:
            y = Atan(scope_, x);
            break;
          case REAL:
            y = Real(scope_, x);
            break;
          case IMAG:
            y = Imag(scope_, x);
            break;
          case CONJ:
            y = Conj(scope_, x);
            break;
          case COMPLEX:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/decompose.go

    		v.Fatalf("decomposeComplexPhi: bad complex size %d", z)
    	}
    
    	real := v.Block.NewValue0(v.Pos, OpPhi, partType)
    	imag := v.Block.NewValue0(v.Pos, OpPhi, partType)
    	for _, a := range v.Args {
    		real.AddArg(a.Block.NewValue1(v.Pos, OpComplexReal, partType, a))
    		imag.AddArg(a.Block.NewValue1(v.Pos, OpComplexImag, partType, a))
    	}
    	v.reset(OpComplexMake)
    	v.AddArg(real)
    	v.AddArg(imag)
    }
    
    func decomposeInterfacePhi(v *Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  4. src/crypto/sha1/sha1block_amd64.s

    	ADDL OFFSET(R15),REG_E \
    	ANDNL REG_C,REG_A,BP \
    	LEAL (REG_E)(REG_B*1), REG_E \ // Add F from the previous round
    	RORXL $0x1b, REG_A, R12 \
    	RORXL $2, REG_A, REG_B         // for next round
    
    // Calculate F for the next round
    #define CALC_F1_POST(REG_A,REG_B,REG_E) \
    	ANDL REG_B,REG_A \             // b&c
    	XORL BP, REG_A \               // F1 = (b&c) ^ (~b&d)
    	LEAL (REG_E)(R12*1), REG_E     // E += A >>> 5
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/arm/asm.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/magic.go

    //                   in 2 instructions on x86.)
    
    // umagicOK reports whether we should strength reduce a n-bit divide by c.
    func umagicOK(n uint, c int64) bool {
    	// Convert from ConstX auxint values to the real uint64 constant they represent.
    	d := uint64(c) << (64 - n) >> (64 - n)
    
    	// Doesn't work for 0.
    	// Don't use for powers of 2.
    	return d&(d-1) != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. test/codegen/mathbits.go

    }
    
    func LeadingZeros16(n uint16) int {
    	// amd64/v1,amd64/v2:"BSRL","LEAL",-"CMOVQEQ"
    	// amd64/v3: "LZCNTL",- "BSRL"
    	// s390x:"FLOGR"
    	// arm:"CLZ" arm64:"CLZ"
    	// mips:"CLZ"
    	// wasm:"I64Clz"
    	// ppc64x:"CNTLZD"
    	return bits.LeadingZeros16(n)
    }
    
    func LeadingZeros8(n uint8) int {
    	// amd64/v1,amd64/v2:"BSRL","LEAL",-"CMOVQEQ"
    	// amd64/v3: "LZCNTL",- "BSRL"
    	// s390x:"FLOGR"
    	// arm:"CLZ" arm64:"CLZ"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/runtime/signal_unix.go

    // signal handler can't tell if it was caused by the real process
    // alarm or not (arguably this means the signal is broken, but I
    // digress). SIGUSR1 and SIGUSR2 are also bad because those are often
    // used in meaningful ways by applications.
    //
    // 4. We need to deal with platforms without real-time signals (like
    // macOS), so those are out.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. src/encoding/gob/enc_helpers.go

    	if !ok {
    		// It is kind complex64 but not type complex64. TODO: We can handle this unsafely.
    		return false
    	}
    	for _, x := range slice {
    		if x != 0+0i || state.sendZero {
    			rpart := floatBits(float64(real(x)))
    			ipart := floatBits(float64(imag(x)))
    			state.encodeUint(rpart)
    			state.encodeUint(ipart)
    		}
    	}
    	return true
    }
    
    func encComplex128Array(state *encoderState, v reflect.Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    				logDryRunAction(action, opts.Writer, opts.MarshalFunc)
    
    				return false, nil, nil
    			},
    		},
    		// Let the DryRunGetter implementation take care of all GET requests.
    		// The DryRunGetter implementation may call a real API Server behind the scenes or just fake everything
    		&core.SimpleReactor{
    			Verb:     "get",
    			Resource: "*",
    			Reaction: func(action core.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
Back to top