Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,442 for bitname (0.09 sec)

  1. src/cmd/go/internal/vcs/vcs.go

    		vcs:        "git",
    		repo:       "https://{root}",
    		check:      noVCSSuffix,
    	},
    
    	// Bitbucket
    	{
    		pathPrefix: "bitbucket.org",
    		regexp:     lazyregexp.New(`^(?P<root>bitbucket\.org/(?P<bitname>[\w.\-]+/[\w.\-]+))(/[\w.\-]+)*$`),
    		vcs:        "git",
    		repo:       "https://{root}",
    		check:      noVCSSuffix,
    	},
    
    	// IBM DevOps Services (JazzHub)
    	{
    		pathPrefix: "hub.jazz.net/git",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/MIEName.java

        }
    
    
        MIEName ( ASN1ObjectIdentifier oid, String name ) {
            this.oid = oid;
            this.name = name;
        }
    
    
        /*
         * (non-Javadoc)
         * 
         * @see java.lang.Object#equals(java.lang.Object)
         */
        @Override
        public boolean equals ( Object other ) {
    
            if ( other instanceof MIEName ) {
                MIEName terg = (MIEName) other;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            queue.stream().forEach(searchLog -> {
                final String userAgent = searchLog.getUserAgent();
                final boolean isBot =
                        userAgent != null && stream(botNames).get(stream -> stream.anyMatch(botName -> userAgent.indexOf(botName) >= 0));
                if (!isBot) {
                    searchLog.getUserInfo().ifPresent(userInfo -> {
                        final String code = userInfo.getId();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. pkg/test/fakes/imageregistry/Makefile

    $(MD_PATH)/$(BIN_NAME)-arm64: $(MD_PATH)/main.go
    	cd $(MD_PATH) && CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o $(BIN_NAME)-arm64 -a -tags netgo -ldflags '-w -extldflags "-static"' main.go
    
    build: $(MD_PATH)/$(BIN_NAME)-amd64  $(MD_PATH)/$(BIN_NAME)-arm64
    
    build_and_push: build
    	docker buildx build --platform=linux/amd64,linux/arm64 $(MD_PATH) -t $(IMG):$(TAG) -t $(IMG):latest --push
    
    clean:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/runtime/vdso_freebsd.go

    const _VDSO_TH_NUM = 4 // defined in <sys/vdso.h> #ifdef _KERNEL
    
    var timekeepSharedPage *vdsoTimekeep
    
    //go:nosplit
    func (bt *bintime) Add(bt2 *bintime) {
    	u := bt.frac
    	bt.frac += bt2.frac
    	if u > bt.frac {
    		bt.sec++
    	}
    	bt.sec += bt2.sec
    }
    
    //go:nosplit
    func (bt *bintime) AddX(x uint64) {
    	u := bt.frac
    	bt.frac += x
    	if u > bt.frac {
    		bt.sec++
    	}
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclassparameters_test.go

    			parameters:   testResourceClassParameters(badName, goodName, goodFilters),
    		},
    		"bad-namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_invalid_path.txt

    go get example.com/dotname/.dot
    go get example.com/dotname/use
    go mod tidy
    
    -- mod/go.mod --
    
    -- mod/foo.go --
    package foo
    
    -- m'd/foo.go --
    package mad
    
    -- badname/go.mod --
    
    module .\.
    
    -- badname/foo.go --
    package badname
    
    -- dotname/go.mod --
    module example.com/dotname
    
    go 1.16
    -- dotname/.dot/dot.go --
    package dot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclass_test.go

    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("metadata", "name"), badName, "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character (e.g. 'example.com', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*')")},
    			class:        testClass(badName, goodName),
    		},
    		"generate-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXGroup.java

            super.serializeInto(s);
    
            if (sortPolicy == SortPolicy.BY_NAME) {
                Collections.sort(children, new Comparator<PBXReference>() {
                    @Override
                    public int compare(PBXReference o1, PBXReference o2) {
                        return o1.getName().compareTo(o2.getName());
                    }
                });
            }
    
            s.addField("children", children);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/test_google.cc

    void BM_NAME(benchmark::State& state) {
      Eigen::ThreadPool pool(port::MaxParallelism());
      Eigen::ThreadPoolDevice device(&pool, pool.NumThreads());
    
      CPP_CLASS computation;
      computation.set_thread_pool(&device);
      zero_buffers(&computation);
    
      for (auto s : state) {
        computation.Run();
      }
    }
    BENCHMARK(BM_NAME);
    
    }  // namespace
    }  // namespace tfcompile
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top