Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 735 for palmer (0.2 sec)

  1. src/runtime/asm_s390x.s

    	SLD	$32, R4, R4
    	MOVW	AR1, R4			// arg 2: TLS base pointer
    	MOVD	$setg_gcc<>(SB), R3 	// arg 1: setg
    	MOVD	g, R2			// arg 0: G
    	// C functions expect 160 bytes of space on caller stack frame
    	// and an 8-byte aligned stack pointer
    	MOVD	R15, R9			// save current stack (R9 is preserved in the Linux ABI)
    	SUB	$160, R15		// reserve 160 bytes
    	MOVD    $~7, R6
    	AND 	R6, R15			// 8-byte align
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_hashtable_ops_as_args.mlir

        %1 = "tf.Identity"(%0) : (tensor<*xi64>) -> tensor<*xi64>
        return %1 : tensor<*xi64>
      }
    
    // Check that the caller is updated.
    // CHECK: func.func @main
    // CHECK: %[[OUT_1:.*]] = "tf.HashTableV2"()
    // CHECK: %[[OUT_2:.*]] = "tf.PartitionedCall"(%arg0, %[[OUT_1]])
    }
    // -----
    // Test nested function case.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 05:41:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. internal/s3select/message.go

    	//
    	// 1. If a writer.write() returns false, select loop below exits and
    	// closes `doneCh` to indicate to caller to also exit.
    	//
    	// 2. If caller (Evaluate()) has an error, it sends an error
    	// message and waits for this go-routine to quit in
    	// FinishWithError()
    	//
    	// 3. If caller is done, it waits for this go-routine to exit
    	// in Finish()
    
    	quitFlag := false
    	for !quitFlag {
    		select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessorTest.groovy

        def ivyMetadataFactory = DependencyManagementTestUtil.ivyMetadataFactory()
        def dependencyMetadataNotationParser = DependencyMetadataNotationParser.parser(instantiator, DirectDependencyMetadataImpl, stringInterner)
        def dependencyConstraintMetadataNotationParser = DependencyMetadataNotationParser.parser(instantiator, DependencyConstraintMetadataImpl, stringInterner)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/runtime/mgcsweep.go

    // time as the sweeper runs. It may transition from true to false if a
    // GC runs; to prevent that the caller must be non-preemptible or must
    // somehow block GC progress.
    func isSweepDone() bool {
    	return sweep.active.isDone()
    }
    
    // Returns only when span s has been swept.
    //
    //go:nowritebarrier
    func (s *mspan) ensureSwept() {
    	// Caller must disable preemption.
    	// Otherwise when this function returns the span can become unswept again
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    	exist, previousOpIndex := grm.isOperationExists(opKey)
    	if exist && grm.operations[previousOpIndex].operationPending {
    		return true
    	}
    	return false
    }
    
    // This is an internal function and caller should acquire and release the lock
    func (grm *nestedPendingOperations) isOperationExists(key operationKey) (bool, int) {
    
    	// If volumeName is empty, operation can be executed concurrently
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  7. src/runtime/sys_openbsd_arm64.s

    	MOVW	(R0), R0		// errno
    	NEG	R0, R0			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1		// arg 2 - buf
    	MOVW	16(R0), R2		// arg 3 - count
    	MOVW	0(R0), R0		// arg 1 - fd
    	CALL	libc_write(SB)
    	CMP	$-1, R0
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R0), R0		// errno
    	NEG	R0, R0			// caller expects negative errno value
    noerr:
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    			// (copyKindDefaults will not assign Group if version is already set). This guarantees that the group
    			// of into is set if there is no better information from the caller or object.
    			if len(actual.Version) == 0 && len(actual.Group) == 0 {
    				actual.Group = types[0].Group
    			}
    		}
    	}
    
    	if len(actual.Kind) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  9. docs/fr/docs/tutorial/query-params-str-validations.md

    Mais si vous décidez d'apprendre à les utiliser, sachez qu'ensuite vous pouvez les utiliser directement dans **FastAPI**.
    
    ## Valeurs par défaut
    
    De la même façon que vous pouvez passer `None` comme premier argument pour l'utiliser comme valeur par défaut, vous pouvez passer d'autres valeurs.
    
    Disons que vous déclarez le paramètre `q` comme ayant une longueur minimale de `3`, et une valeur par défaut étant `"fixedquery"` :
    
    ```Python hl_lines="7"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. pkg/log/config.go

    	FatalLevel: zapcore.FatalLevel,
    	NoneLevel:  none,
    }
    
    var defaultEncoderConfig = zapcore.EncoderConfig{
    	TimeKey:        "time",
    	LevelKey:       "level",
    	NameKey:        "scope",
    	CallerKey:      "caller",
    	MessageKey:     "msg",
    	StacktraceKey:  "stack",
    	LineEnding:     zapcore.DefaultLineEnding,
    	EncodeLevel:    zapcore.LowercaseLevelEncoder,
    	EncodeCaller:   zapcore.ShortCallerEncoder,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top