Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for firstUse (0.3 sec)

  1. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/SftpClientReuseIntegrationTest.groovy

            buildFile << """
                ${sftpTask}
    
                task firstUse(type: SftpTask) {
                    credentials = creds
                }
    
                task block {
                    doLast {
                        ${coordinator.callFromBuild('sync')}
                    }
                    dependsOn firstUse
                }
    
                task reuseClient(type: SftpTask) {
                    credentials = creds
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    	addendStr := ""
    	if r.Add() != 0 {
    		addendStr = fmt.Sprintf("%+d", r.Add())
    	}
    
    	stubName := fmt.Sprintf("%s%s.%s", stubStrs[stubType], addendStr, ldr.SymName(r.Sym()))
    	stub := ldr.CreateSymForUpdate(stubName, 0)
    	firstUse = stub.Size() == 0
    	if firstUse {
    		switch stubType {
    		// A call from a function using a TOC pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    			caller: &security.Caller{
    				AuthSource: security.AuthSourceClientCertificate,
    				Identities: []string{
    					"spiffe://mesh.example.com/ns/firstns/sa/firstsa",
    					"hello.west.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/diag/messages_test.go

    		MockResource("B"),
    		"B",
    	)
    
    	msgs := Messages{fifthMsg, fourthMsg, thirdMsg, secondMsg, firstMsg}
    	expectedMsgs := Messages{firstMsg, secondMsg, thirdMsg, fourthMsg, fifthMsg}
    
    	msgs.Sort()
    
    	g.Expect(msgs).To(Equal(expectedMsgs))
    }
    
    func TestMessages_SortWithNilOrigin(t *testing.T) {
    	g := NewWithT(t)
    
    	firstMsg := NewMessage(
    		NewMessageType(Error, "B1", "Template: %q"),
    		nil,
    		"B",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

          (!tensor.operations.empty() && ioperation == tensor.first_use());
      const bool was_last_use =
          (!tensor.operations.empty() && ioperation == tensor.last_use());
      Erase(ioperation, tensor.operations);
      Erase(itensor, operation.tensors);
      if (was_first_use) {
        operation.alloc -= size;
        if (!was_last_use) {
          operations_[tensor.first_use()].alloc += size;
        }
      }
      if (was_last_use) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. istioctl/pkg/util/formatting/formatter_test.go

    	g := NewWithT(t)
    
    	firstMsg := diag.NewMessage(
    		diag.NewMessageType(diag.Error, "B1", "Explosion accident: %v"),
    		diag.MockResource("SoapBubble"),
    		"the bubble is too big",
    	)
    	secondMsg := diag.NewMessage(
    		diag.NewMessageType(diag.Warning, "C1", "Collapse danger: %v"),
    		diag.MockResource("GrandCastle"),
    		"the castle is too old",
    	)
    
    	msgs := diag.Messages{firstMsg, secondMsg}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            if ( prefixLen > 1 ) {
                prefixLen--;
                int firstSep = this.canon.indexOf('/', 1);
                if ( firstSep < 0 ) {
                    this.share = this.canon.substring(1);
                    this.unc = "\\";
                }
                else if ( firstSep == prefixLen ) {
                    this.share = this.canon.substring(1, firstSep);
                    this.unc = "\\";
                }
                else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/DfsTest.java

            URI dfsRoot = new URI(getDFSRootURL());
            String dfsRootPath = dfsRoot.getPath();
            int firstSep = dfsRootPath.indexOf('/', 1);
            String dfsShare;
            if ( firstSep > 0 ) {
                dfsShare = dfsRootPath.substring(1, firstSep);
            }
            else {
                dfsShare = dfsRootPath.substring(1, dfsRootPath.length() - 1);
            }
            return dfsShare;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 13.5K bytes
    - Viewed (0)
  9. pkg/kubelet/config/config.go

    	s.updateLock.Lock()
    	defer s.updateLock.Unlock()
    
    	seenBefore := s.sourcesSeen.Has(source)
    	adds, updates, deletes, removes, reconciles := s.merge(source, change)
    	firstSet := !seenBefore && s.sourcesSeen.Has(source)
    
    	// deliver update notifications
    	switch s.mode {
    	case PodConfigNotificationIncremental:
    		if len(removes.Pods) > 0 {
    			s.updates <- *removes
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/EnumTest.java

                Set<String> listLinks = new HashSet<>(Arrays.asList(list));
                int firstSep = link.indexOf('/');
                if ( firstSep == link.length() - 1 ) {
                    // single level
                    assertTrue("Link not found " + link, listLinks.contains(link));
                }
                else {
                    link = link.substring(0, firstSep + 1);
                    // single level
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top