Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 8,206 for internally (0.22 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

    import org.gradle.api.Task
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.api.internal.TaskInternal
    import org.gradle.api.internal.file.FileCollectionFactory
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.api.internal.tasks.TaskExecuter
    import org.gradle.api.internal.tasks.TaskStateInternal
    import org.gradle.api.internal.tasks.execution.DefaultTaskExecutionContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/runtime/runtime-seh_windows_test.go

    // Copyright 2023 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 runtime_test
    
    import (
    	"internal/abi"
    	"internal/syscall/windows"
    	"runtime"
    	"slices"
    	"testing"
    	"unsafe"
    )
    
    func sehf1() int {
    	return sehf1()
    }
    
    func sehf2() {}
    
    func TestSehLookupFunctionEntry(t *testing.T) {
    	if runtime.GOARCH != "amd64" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:52:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/options/token.go

    	fs.StringVar(
    		&bto.Description, TokenDescription, bto.Description,
    		"A human friendly description of how this token is used.",
    	)
    }
    
    // ApplyTo applies the values set internally in the BootstrapTokenOptions object to a InitConfiguration object at runtime
    // If --token was specified in the CLI (as a string), it's parsed and validated before it's added to the BootstrapToken object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/generated.proto

    //
    // The sign will be omitted unless the number is negative.
    //
    // Examples:
    //
    // - 1.5 will be serialized as "1500m"
    // - 1.5Gi will be serialized as "1536Mi"
    //
    // Note that the quantity will NEVER be internally represented by a
    // floating point number. That is the whole point of this exercise.
    //
    // Non-canonical values will still parse as long as they are well formed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h

      // `dst_saved_model_path`. `tags` will be attached to the saved
      // `MetaGraphDef`. `signature_def_map` will be passed to the
      // `add_meta_graph_and_variables` function, which is internally used to add a
      // `MetaGraphDef` to save to the SavedModel.
      //
      // Returns `true` if successful. Returns `std::nullopt` otherwise.
      //
      // If the function signature changes, likely its corresponding .pyi type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // that to TypesN<T1, ..., TN> internally to make error messages
    // readable.  The translation is done by the 'type' member of the
    // Types template.
    
    $range i 1..n
    template <$for i, [[typename T$i = internal::None]]>
    struct Types {
      typedef internal::Types$n<$for i, [[T$i]]> type;
    };
    
    template <>
    struct Types<$for i, [[internal::None]]> {
      typedef internal::Types0 type;
    };
    
    $range i 1..n-1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

        Arrays.fill(array, c)
        return String(array)
      }
    
      /**
       * Okio buffers are internally implemented as a linked list of arrays. Usually this implementation
       * detail is invisible to the caller, but subtle use of certain APIs may depend on these internal
       * structures.
       *
       * We make such subtle calls in [okhttp3.internal.ws.MessageInflater] because we try to read a
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

        public Map<String, Lifecycle> getPhaseToLifecycleMap() {
            // If people are going to make their own lifecycles then we need to tell people how to namespace them correctly
            // so that they don't interfere with internally defined lifecycles.
    
            Map<String, Lifecycle> phaseToLifecycleMap = new HashMap<>();
    
            for (Lifecycle lifecycle : getLifeCycles()) {
                logger.debug("Lifecycle {}", lifecycle);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/p384.go

    import (
    	"crypto/subtle"
    	"errors"
    )
    
    // P384Element is an integer modulo 2^384 - 2^128 - 2^96 + 2^32 - 1.
    //
    // The zero value is a valid zero element.
    type P384Element struct {
    	// Values are represented internally always in the Montgomery domain, and
    	// converted in Bytes and SetBytes.
    	x p384MontgomeryDomainFieldElement
    }
    
    const p384ElementLen = 48
    
    type p384UntypedFieldElement = [6]uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p521.go

    package fiat
    
    import (
    	"crypto/subtle"
    	"errors"
    )
    
    // P521Element is an integer modulo 2^521 - 1.
    //
    // The zero value is a valid zero element.
    type P521Element struct {
    	// Values are represented internally always in the Montgomery domain, and
    	// converted in Bytes and SetBytes.
    	x p521MontgomeryDomainFieldElement
    }
    
    const p521ElementLen = 66
    
    type p521UntypedFieldElement = [9]uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top