Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,208 for xoring (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecutionAccessListener.java

        /**
         * Called when accessing the project during task execution.
         */
        void onProjectAccess(String invocationDescription, TaskInternal task, @Nullable TaskInternal runningTask);
    
        /**
         * Called when accessing task dependencies during task execution.
         */
        void onTaskDependenciesAccess(String invocationDescription, TaskInternal task, @Nullable TaskInternal runningTask);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-dont/tests/logicDuringConfigurationPhase.out

    * What went wrong:
    A problem occurred configuring root project 'logic-during-configuration-dont'.
    > Could not create task ':printArtifactNames'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 215 bytes
    - Viewed (0)
  3. src/crypto/internal/boring/hmac.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto && linux && (amd64 || arm64) && !android && !msan
    
    package boring
    
    // #include "goboringcrypto.h"
    import "C"
    import (
    	"bytes"
    	"crypto"
    	"hash"
    	"runtime"
    	"unsafe"
    )
    
    // hashToMD converts a hash.Hash implementation from this package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr6_writing_tasks.adoc

    tasks.register("task1"){  // <1>
        println("REGISTER TASK1: This is executed during the configuration phase")
    }
    
    tasks.named("task1"){  // <2>
        println("NAMED TASK1: This is executed during the configuration phase")
        doFirst {
            println("NAMED TASK1 - doFirst: This is executed during the execution phase")
        }
        doLast {
            println("NAMED TASK1 - doLast: This is executed during the execution phase")
        }
    }
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/runtime/signal_windows.go

    		return _EXCEPTION_CONTINUE_SEARCH
    	}
    
    	// VEH is called before SEH, but arm64 MSVC DLLs use SEH to trap
    	// illegal instructions during runtime initialization to determine
    	// CPU features, so if we make it to the last handler and we're
    	// arm64 and it's an illegal instruction and this is coming from
    	// non-Go code, then assume it's this runtime probing happen, and
    	// pass that onward to SEH.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. pkg/collateral/metrics/otel_test.go

    	)
    
    	// InstanceErrs is a measure of the number of errors for processing instance config.
    	InstanceErrs = monitoring.NewGauge(
    		"mixer/config/instance_config_errors_total",
    		"The number of errors encountered during processing of the instance configuration.",
    	)
    
    	// RulesTotal is a measure of the number of known rules.
    	RulesTotal = monitoring.NewGauge(
    		"mixer/config/rule_configs_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

        // Apply default weight-only quantization. Weights are quantized during
        // conversion, then dequantized during inference.
        // Activation: f32, Weight: qi8, Bias: f32
        WEIGHT_ONLY = 1;
    
        // Apply default dynamic range quantization. Quantized tensor value's
        // ranges are determined during graph runtime.
        // Activation: f32, Weight: qi8, Bias: f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/testing-dependencies.md

    # Testing Dependencies with Overrides
    
    ## Overriding dependencies during testing
    
    There are some scenarios where you might want to override a dependency during testing.
    
    You don't want the original dependency to run (nor any of the sub-dependencies it might have).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/main/java/org/gradle/internal/serialization/Transient.java

     */
    
    package org.gradle.internal.serialization;
    
    import javax.annotation.Nullable;
    
    /**
     * A value that gets discarded during serialization.
     */
    public abstract class Transient<T> implements java.io.Serializable {
    
        /**
         * A mutable variable that gets discarded during serialization.
         */
        public static abstract class Var<T> extends Transient<T> {
            public abstract void set(T value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/notboring.go

    type PublicKeyECDSA struct{ _ int }
    type PrivateKeyECDSA struct{ _ int }
    
    func GenerateKeyECDSA(curve string) (X, Y, D BigInt, err error) {
    	panic("boringcrypto: not available")
    }
    func NewPrivateKeyECDSA(curve string, X, Y, D BigInt) (*PrivateKeyECDSA, error) {
    	panic("boringcrypto: not available")
    }
    func NewPublicKeyECDSA(curve string, X, Y BigInt) (*PublicKeyECDSA, error) {
    	panic("boringcrypto: not available")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top