Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 807 for central (0.36 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    The actual version will be subject to traditional conflict resolution, if any.
    
    [[sub:using-platform-to-control-transitive-deps]]
    == Using a platform to control transitive versions
    
    A <<dependency_management_terminology.adoc#sub::terminology_platform,platform>> is a special software component which can be used to control transitive dependency versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. docs/es/docs/async.md

    Y como la mayor parte del tiempo de ejecución lo coge el trabajo real (en lugar de esperar), y el trabajo en un sistema lo realiza una <abbr title = "Central Processing Unit. En español: Unidad Central de Procesamiento."> CPU </abbr>, a estos problemas se les llama "<abbr title="En español: atado a CPU.">CPU bound</abbr>".
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1}, 0, 0, 1, new byte[] {1});
        testRotate(new byte[] {1}, 1, 0, 1, new byte[] {1});
        testRotate(new byte[] {1}, 1, 1, 1, new byte[] {1});
    
        // Rotate the central 5 elements, leaving the ends as-is
        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, -6, 1, 6, new byte[] {0, 2, 3, 4, 5, 1, 6});
        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, -1, 1, 6, new byte[] {0, 2, 3, 4, 5, 1, 6});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter.go

    	"k8s.io/kubernetes/pkg/volume/util"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    	"k8s.io/mount-utils"
    	utilstrings "k8s.io/utils/strings"
    )
    
    // TODO (vladimirvivien) move this in a central loc later
    var (
    	volDataKey = struct {
    		specVolID,
    		volHandle,
    		driverName,
    		nodeName,
    		attachmentID,
    		volumeLifecycleMode,
    		seLinuxMountContext string
    	}{
    		"specVolID",
    		"volumeHandle",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. src/internal/reflectlite/value.go

    	}
    	return 0
    }
    
    func (v Value) typ() *abi.Type {
    	// Types are either static (for compiler-created types) or
    	// heap-allocated but always reachable (for reflection-created
    	// types, held in the central map). So there is no need to
    	// escape types. noescape here help avoid unnecessary escape
    	// of v.
    	return (*abi.Type)(abi.NoEscape(unsafe.Pointer(v.typ_)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. pkg/adsc/delta.go

    package adsc
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"math"
    	"strings"
    	"sync"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/envoyproxy/go-control-plane/pkg/resource/v3"
    	"go.uber.org/atomic"
    	"google.golang.org/genproto/googleapis/rpc/status"
    	"google.golang.org/grpc"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1'}, 0, 0, 1, new char[] {'1'});
        testRotate(new char[] {'1'}, 1, 0, 1, new char[] {'1'});
        testRotate(new char[] {'1'}, 1, 1, 1, new char[] {'1'});
    
        // Rotate the central 5 elements, leaving the ends as-is
        testRotate(
            new char[] {'0', '1', '2', '3', '4', '5', '6'},
            -6,
            1,
            6,
            new char[] {'0', '2', '3', '4', '5', '1', '6'});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

        mavenCentral()
        google()
    }
    ----
    
    In the example, the `guava` library and the JetBrains Kotlin plugin (`org.jetbrains.kotlin.jvm`) will be downloaded from the link:https://repo.maven.apache.org/maven2/[Maven Central Repository].
    
    === 3. Add dependencies
    
    A project generally has a number of dependencies it needs to do its work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. pkg/security/security.go

    	// Normally initialized from ISTIO_META_CLUSTER_ID - after a tortuous journey it
    	// makes its way into the ClusterID metadata of Citadel gRPC request to create the cert.
    	// Didn't find much doc - but I suspect used for 'central cluster' use cases - so should
    	// match the cluster name set in the MC setup.
    	ClusterID string
    
    	// The type of Elliptical Signature algorithm to use
    	// when generating private keys. Currently only ECDSA is supported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

        testRotate(new boolean[] {true}, 0, 0, 1, new boolean[] {true});
        testRotate(new boolean[] {true}, 1, 0, 1, new boolean[] {true});
        testRotate(new boolean[] {true}, 1, 1, 1, new boolean[] {true});
    
        // Rotate the central 5 elements, leaving the ends as-is
        testRotate(
            new boolean[] {false, true, false, true, false, true, false},
            -6,
            1,
            6,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top