Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 153 for uuid3 (0.04 sec)

  1. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFile.groovy

        }
    
        protected String getDefaultResourceName() {
            'default.vcxproj'
        }
    
        def setProjectUuid(String uuid) {
            Node globals = xml.PropertyGroup.find({ it.'@Label' == 'Globals' }) as Node
            globals.appendNode("ProjectGUID", uuid)
        }
    
        def setVisualStudioVersion(VersionNumber version) {
            visualStudioVersion = version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/service/impl/EsDataServiceTest.java

     */
    package org.codelibs.fess.crawler.service.impl;
    
    import static org.codelibs.opensearch.runner.OpenSearchRunner.newConfigs;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.UUID;
    
    import javax.annotation.Resource;
    
    import org.codelibs.fess.crawler.client.FesenClient;
    import org.codelibs.fess.crawler.entity.AccessResult;
    import org.codelibs.fess.crawler.entity.EsAccessResult;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview.go

    		switch version {
    		case admissionv1.SchemeGroupVersion.Version:
    			uid := types.UID(uuid.NewUUID())
    			request := CreateV1AdmissionReview(uid, versionedAttributes, invocation)
    			response := &admissionv1.AdmissionReview{}
    			return uid, request, response, nil
    
    		case admissionv1beta1.SchemeGroupVersion.Version:
    			uid := types.UID(uuid.NewUUID())
    			request := CreateV1beta1AdmissionReview(uid, versionedAttributes, invocation)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/requestidextension/uuid_extension.go

    package requestidextension
    
    import (
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	uuid_extension "github.com/envoyproxy/go-control-plane/envoy/extensions/request_id/uuid/v3"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    var UUIDRequestIDExtension = &hcm.RequestIDExtension{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 22 16:43:43 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.inject.Inject;
    import java.io.File;
    import java.io.IOException;
    import java.util.Locale;
    import java.util.UUID;
    
    class GenericFileSystem implements FileSystem {
        private static final Logger LOGGER = LoggerFactory.getLogger(GenericFileSystem.class);
    
        private Boolean caseSensitive;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/PartialTrigger.kt

    class PartialTrigger<T : BaseGradleBuildType>(triggerName: String, triggerId: String, model: CIBuildModel, dependencies: Iterable<T>) : BaseGradleBuildType(init = {
        id("${model.projectId}_${triggerId}_Trigger")
        uuid = "${DslContext.uuidPrefix}_${model.projectId}_${triggerId}_Trigger"
        name = "$triggerName (Trigger)"
        type = Type.COMPOSITE
    
        applyDefaultSettings()
    
        features {
            publishBuildStatusToGithub(model)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. docs/bucket/lifecycle/DESIGN.md

    only the object metadata on MinIO.
    
    The data on the backend is stored under the `bucket/prefix` specified in the tier configuration with a custom name derived from a randomly generated uuid - e.g. `0b/c4/0bc4fab7-2daf-4d2f-8e39-5c6c6fb7e2d3`. The first two prefixes are characters 1-2,3-4 from the uuid. This format allows tiering to any cloud irrespective of whether the cloud in question supports versioning. The reference to the transitioned object name and transitioned tier is stored as part...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cache
    
    import (
    	"context"
    	"math/rand"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/google/uuid"
    
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    func TestExpiringCache(t *testing.T) {
    	cache := NewExpiring()
    
    	if result, ok := cache.Get("foo"); ok || result != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. pkg/test/echo/server/endpoint/grpc.go

    // limitations under the License.
    
    package endpoint
    
    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"fmt"
    	"net"
    	"net/http"
    	"os"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/google/uuid"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/admin"
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/credentials/insecure"
    	xdscreds "google.golang.org/grpc/credentials/xds"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 17:30:37 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler;
    
    import static org.codelibs.opensearch.runner.OpenSearchRunner.newConfigs;
    
    import java.io.File;
    import java.util.UUID;
    import java.util.logging.ConsoleHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import java.util.logging.SimpleFormatter;
    
    import javax.annotation.Resource;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top