Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 242 for doEmit (0.33 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                    //noinspection GroovyAccessibility
                    config.clear()
                }
                testDirectory.file('initial-commit').createNewFile()
                git.add().addFilepattern("initial-commit").call()
                git.commit().setMessage("Initial commit").call()
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. docs/de/docs/deployment/https.md

        * Mit dieser SNI-Erweiterung kann ein einzelner Server (mit einer **einzelnen IP-Adresse**) über **mehrere HTTPS-Zertifikate** verfügen und **mehrere HTTPS-Domains/Anwendungen** bedienen.
        * Damit das funktioniert, muss eine **einzelne** Komponente (Programm), die auf dem Server ausgeführt wird und welche die **öffentliche IP-Adresse** überwacht, **alle HTTPS-Zertifikate** des Servers haben.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/vcs.go

    	for _, line := range strings.Split(out, "\n") {
    		if line == "" || line[0] == ' ' || line[0] == '\t' {
    			// End of header, start of commit message.
    			break
    		}
    		if line[0] == '-' {
    			continue
    		}
    		before, after, found := strings.Cut(line, ":")
    		if !found {
    			// End of header, start of commit message.
    			break
    		}
    		key, val := before, strings.TrimSpace(after)
    		switch key {
    		case "revno":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/cache.go

    		writeDiskCache(ctx, file, data)
    	}
    	return file, info, nil
    }
    
    // readDiskStatByHash is a fallback for readDiskStat for the case
    // where rev is a commit hash instead of a proper semantic version.
    // In that case, we look for a cached pseudo-version that matches
    // the commit hash. If we find one, we use it.
    // This matters most for converting legacy package management
    // configs, when we are often looking up commits by full hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                        deleteDocuments();
                    }
                }
            }
            return true;
        }
    
        @Override
        public void commit() {
            try {
                if (logger.isDebugEnabled()) {
                    logger.debug("Shutting down thread executor.");
                }
                executor.shutdown();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

        val fileOperator = FileOperator(file!!.channel)
        fileOperator.write(FILE_HEADER_SIZE + upstreamSize, metadataBuffer, metadata.size.toLong())
      }
    
      @Throws(IOException::class)
      fun commit(upstreamSize: Long) {
        // Write metadata to the end of the file.
        writeMetadata(upstreamSize)
        file!!.channel.force(false)
    
        // Once everything else is in place we can swap the dirty header for a clean one.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. .github/actions/people/app/main.py

        contributors_results = get_contributors(pr_nodes=pr_nodes)
        authors = {**experts_results.authors, **contributors_results.authors}
        maintainers_logins = {"tiangolo"}
        bot_names = {"codecov", "github-actions", "pre-commit-ci", "dependabot"}
        maintainers = []
        for login in maintainers_logins:
            user = authors[login]
            maintainers.append(
                {
                    "login": login,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/coderepo.go

    // r.modPath and encodes a base version and commit metadata that agrees with
    // info.
    //
    // Note that verifying a nontrivial base version in particular may be somewhat
    // expensive: in order to do so, r.code.DescendsFrom will need to fetch at least
    // enough of the commit history to find a path between version and its base.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. tests/joins_test.go

    	DB.Save(&user)
    
    	results := make([]*User, 0)
    
    	if err := DB.Table("users").Omit("name").Where("users.name = ?", "joins_with_omit").Joins("left join pets on pets.user_id = users.id").Find(&results).Error; err != nil {
    		return
    	}
    
    	if len(results) != 2 || results[0].Name != "" || results[1].Name != "" {
    		t.Errorf("Should find all two pets with Join omit and should not find user's name, got %+v", results)
    		return
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/runtime/profbuf.go

    	// header, zero-padded
    	i := copy(data[2:2+b.hdrsize], hdr)
    	clear(data[2+i : 2+b.hdrsize])
    	for i, pc := range stk {
    		data[2+b.hdrsize+uintptr(i)] = uint64(pc)
    	}
    
    	for {
    		// Commit write.
    		// Racing with reader setting flag bits in b.w, to avoid lost wakeups.
    		old := b.w.load()
    		new := old.addCountsAndClearFlags(skip+2+len(stk)+int(b.hdrsize), 1)
    		if !b.w.cas(old, new) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top