Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for clen (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	sa.raw.Scope_id = sa.ZoneId
    	for i := 0; i < len(sa.Addr); i++ {
    		sa.raw.Addr[i] = sa.Addr[i]
    	}
    	return unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil
    }
    
    func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	name := sa.Name
    	n := len(name)
    	if n >= len(sa.raw.Path) || n == 0 {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Len = byte(3 + n) // 2 for Family, Len; 1 for NUL
    	sa.raw.Family = AF_UNIX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    		compile := asmArgs[:len(asmArgs):len(asmArgs)]
    
    		doclean := true
    		b := pathf("%s/%s", workdir, filepath.Base(p))
    
    		// Change the last character of the output file (which was c or s).
    		b = b[:len(b)-1] + "o"
    		compile = append(compile, "-o", b, p)
    		bgrun(&wg, dir, compile...)
    
    		link = append(link, b)
    		if doclean {
    			clean = append(clean, b)
    		}
    	}
    	bgwait(&wg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        // Let the rebuild complete successfully.
        filesystem.setFaultyRename(cacheDir / DiskLruCache.JOURNAL_FILE_BACKUP, false)
        taskFaker.runNextTask()
        assertJournalEquals("CLEAN a 1 1", "CLEAN b 1 1", "DIRTY e", "CLEAN c 1 1")
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun rebuildJournalFailureWithEditorsInFlightThenClose(parameters: Pair<FileSystem, Boolean>) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    include::sample[dir="snippets/tasks/incrementalBuild-customTaskClass/groovy",files="build.gradle[tags=ad-hoc-task-skip-when-empty]"]
    
    .Output of **`gradle clean processTemplatesAdHocSkipWhenEmpty`**
    ----
    > gradle clean processTemplatesAdHocSkipWhenEmpty
    include::{snippetsPath}/tasks/incrementalBuild-customTaskClass/tests/incrementalAdHocTaskNoSource.out[]
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	)
    	if podVolumes != nil {
    		bindings = podVolumes.StaticBindings
    		provisionedClaims = podVolumes.DynamicProvisions
    	}
    	if aLen, eLen := len(bindings), len(expectedBindings); aLen != eLen {
    		t.Errorf("expected %v bindings, got %v", eLen, aLen)
    	} else if expectedBindings == nil && bindings != nil {
    		// nil and empty are different
    		t.Error("expected nil bindings, got empty")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages.go

    		if len(cas) < int(caLen) {
    			return false
    		}
    
    		m.certificateAuthorities = append(m.certificateAuthorities, cas[:caLen])
    		cas = cas[caLen:]
    	}
    
    	return len(data) == 0
    }
    
    type certificateVerifyMsg struct {
    	hasSignatureAlgorithm bool // format change introduced in TLS 1.2
    	signatureAlgorithm    SignatureScheme
    	signature             []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    	// Scan down to find pseudo-operator (.
    	// There are no | above (.
    	i := len(p.stack)
    	for i > 0 && p.stack[i-1].Op < opPseudo {
    		i--
    	}
    	subs := p.stack[i:]
    	p.stack = p.stack[:i]
    
    	// Make sure top class is clean.
    	// All the others already are (see swapVerticalBar).
    	if len(subs) > 0 {
    		cleanAlt(subs[len(subs)-1])
    	}
    
    	// Empty alternate is special case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    	// Read testcache expiration time, if present.
    	// (We implement go clean -testcache by writing an expiration date
    	// instead of searching out and deleting test result cache entries.)
    	if dir, _ := cache.DefaultDir(); dir != "off" {
    		if data, _ := lockedfile.Read(filepath.Join(dir, "testexpire.txt")); len(data) > 0 && data[len(data)-1] == '\n' {
    			if t, err := strconv.ParseInt(string(data[:len(data)-1]), 10, 64); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    	if inWorkspaceMode() {
    		return gover.FromGoWork(mms.workFile)
    	}
    	if mms != nil && len(mms.versions) == 1 {
    		f := mms.ModFile(mms.mustGetSingleMainModule())
    		if f == nil {
    			// Special case: we are outside a module, like 'go run x.go'.
    			// Assume the local Go version.
    			// TODO(#49228): Clean this up; see loadModFile.
    			return gover.Local()
    		}
    		return gover.FromGoMod(f)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      EXPECT_EQ(0, num_dims);
      TF_GraphGetTensorShape(graph, three_out_0, returned_dims, num_dims, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      // Clean up
      TF_DeleteGraph(graph);
      TF_DeleteStatus(s);
    }
    
    TEST(CAPI, Graph) {
      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      // Make a placeholder operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top