Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 775 for content_es (0.16 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriterContext.java

                    //at least, it will work out of the box on linux or mac environments.
                    //on windows, the options file will have correct contents according to the javadoc spec but it may not work (the failure will be exactly the same as if we didn't replace line breaks)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/sparsemap.go

    		y := s.dense[len(s.dense)-1]
    		s.dense[i] = y
    		s.sparse[y.key] = i
    		s.dense = s.dense[:len(s.dense)-1]
    	}
    }
    
    func (s *sparseMap) clear() {
    	s.dense = s.dense[:0]
    }
    
    func (s *sparseMap) contents() []sparseEntry {
    	return s.dense
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcweb/auth.go

    package vcweb
    
    import (
    	"encoding/json"
    	"fmt"
    	"io"
    	"log"
    	"net/http"
    	"os"
    	"path"
    	"strings"
    )
    
    // authHandler serves requests only if the Basic Auth data sent with the request
    // matches the contents of a ".access" file in the requested directory.
    //
    // For each request, the handler looks for a file named ".access" and parses it
    // as a JSON-serialized accessToken. If the credentials from the request match
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 17:47:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

         * @param previouslyKnownSnapshots Snapshots already known to exist in the file system.
         * @param unfilteredSnapshotRecorder If the returned snapshot is filtered by the predicate, i.e. it doesn't have all the contents of the directory,
         * then this consumer will receive all the unfiltered snapshots within the snapshot directory.
         * For example, if an element of a directory is filtered out, the consumer will receive all the non-filtered out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  5. src/cmd/cover/cfg_test.go

    import (
    	"cmd/internal/cov/covcmd"
    	"encoding/json"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func writeFile(t *testing.T, path string, contents []byte) {
    	if err := os.WriteFile(path, contents, 0666); err != nil {
    		t.Fatalf("os.WriteFile(%s) failed: %v", path, err)
    	}
    }
    
    func writePkgConfig(t *testing.T, outdir, tag, ppath, pname string, gran string, mpath string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        /**
         * Reads and returns file contents. If some exception is triggered the method returns information about this exception.
         * Useful for including file contents in debug trace / exception messages.
         *
         * @param file to read
         * @return content of the file or the problem description in case file cannot be read.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

         *
         * @param mode the lock mode to use
         */
        CacheBuilder withInitialLockMode(FileLockManager.LockMode mode);
    
        /**
         * Specifies an action to execute to initialize the cache contents, if the cache does not exist or is invalid. An exclusive lock is held while the initializer is executing, to prevent
         * cross-process access.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileTreeTest.groovy

            final FileTreeInternal filtered2 = Mock()
            final PatternSet patterns = Mock()
    
            when:
            FileTree filtered = tree.matching(action)
    
            then: // action is applied each time the contents are queried
            0 * _
    
            when:
            def sourceCollections = (filtered as CompositeFileTree).sourceCollections
    
            then:
            sourceCollections == [filtered1, filtered2]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    	doc, err := ExtractDoc(content, name)
    	if err != nil {
    		panic(err)
    	}
    	return doc
    }
    
    // ExtractDoc extracts a section of a package doc comment from the
    // provided contents of an analyzer package's doc.go file.
    //
    // A section is a portion of the comment between one heading and
    // the next, using this form:
    //
    //	# Analyzer NAME
    //
    //	NAME: SUMMARY
    //
    //	Full description...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. src/net/lookup_unix.go

    //go:build unix || js || wasip1
    
    package net
    
    import (
    	"context"
    	"internal/bytealg"
    	"sync"
    )
    
    var onceReadProtocols sync.Once
    
    // readProtocols loads contents of /etc/protocols into protocols map
    // for quick access.
    func readProtocols() {
    	file, err := open("/etc/protocols")
    	if err != nil {
    		return
    	}
    	defer file.close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top