Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for uuid3 (0.12 sec)

  1. .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)
  2. 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)
  3. 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)
  4. tests/go.mod

    module gorm.io/gorm/tests
    
    go 1.18
    
    require (
    	github.com/google/uuid v1.6.0
    	github.com/jinzhu/now v1.1.5
    	github.com/lib/pq v1.10.9
    	github.com/stretchr/testify v1.9.0
    	gorm.io/driver/mysql v1.5.7
    	gorm.io/driver/postgres v1.5.9
    	gorm.io/driver/sqlite v1.5.6
    	gorm.io/driver/sqlserver v1.5.3
    	gorm.io/gorm v1.25.10
    )
    
    require (
    	filippo.io/edwards25519 v1.1.0 // indirect
    	github.com/davecgh/go-spew v1.1.1 // indirect
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-base/src/test/groovy/org/gradle/caching/internal/origin/OriginMetadataFactoryTest.groovy

    import org.gradle.internal.hash.TestHashCodes
    import spock.lang.Specification
    
    import java.time.Duration
    
    class OriginMetadataFactoryTest extends Specification {
        def buildInvocationId = UUID.randomUUID().toString()
        def factory = new OriginMetadataFactory(
            buildInvocationId,
            { it.gradleVersion = "3.0" }
        )
        def buildCacheKey = TestHashCodes.hashCodeFrom(1234)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 15:16:00 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/server.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package fixtures
    
    import (
    	"os"
    	"strings"
    	"time"
    
    	"github.com/google/uuid"
    	"go.etcd.io/etcd/client/pkg/v3/transport"
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"google.golang.org/grpc"
    
    	"k8s.io/apiextensions-apiserver/pkg/apiserver"
    	"k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt

    import jetbrains.buildServer.configs.kotlin.DslContext
    import vcsroots.useAbsoluteVcs
    
    object PublishKotlinDslPlugin : BuildType({
        name = "Publish Kotlin DSL Plugin"
        id("Util_PublishKotlinDslPlugin")
        uuid = "${DslContext.uuidPrefix}_Util_PublishKotlinDslPlugin"
        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().vcsRootId())
    
        requirements {
            requiresOs(Os.LINUX)
        }
    
        params {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    		if err != nil {
    			return nil, "", fmt.Errorf("failed to merge specs: %v", err)
    		}
    		// A UUID is returned for the etag because we will only
    		// create a new merger when a CRD has changed. A hash based
    		// etag is more expensive because the CRDs are not
    		// premarshalled.
    		return mergedSpec, uuid.New().String(), nil
    	}, specList)
    	c.openAPIService.UpdateSpecLazy(cache)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

    class PublishNightlyDocumentation(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild(
        promotedBranch = branch.branchName,
        promoteTask = "publishBranchDocs",
        triggerName = StageName.PULL_REQUEST_FEEDBACK.uuid,
        vcsRootId = gradlePromotionBranches
    ) {
        init {
            id("Promotion_NightlyDocumentation")
            name = "Nightly Documentation"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:05:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProject.java

    import java.io.File;
    import java.util.ArrayList;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.UUID;
    
    import static org.gradle.util.internal.CollectionUtils.collect;
    
    /**
     * A VisualStudio project represents a set of binaries for a component that may vary in build type and target platform.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top