Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 114 for trimDead (0.14 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

            isVersionLockFileWithInfoRegion(testFileLock, false)
    
            cleanup:
            lock?.close()
        }
    
        @Requires(UnitTestPreconditions.NoMandatoryFileLockOnOpen)
        def "long descriptor strings are trimmed when written to information region"() {
            setup:
            def customMetaDataProvider = Mock(ProcessMetaDataProvider)
            def processIdentifier = RandomStringUtils.randomAlphanumeric(1000)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/encoding/xml/read.go

    // setting it to the boolean value represented by the string. Whitespace
    // is trimmed and ignored.
    //
    // Unmarshal maps an XML element or attribute value to an integer or
    // floating-point field by setting the field to the result of
    // interpreting the string value in decimal. There is no check for
    // overflow. Whitespace is trimmed and ignored.
    //
    // Unmarshal maps an XML element to a Name by recording the element
    // name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. src/cmd/go/main.go

    		help.Help(os.Stdout, args[1:])
    		return
    	}
    
    	if cfg.GOROOT == "" {
    		fmt.Fprintf(os.Stderr, "go: cannot find GOROOT directory: 'go' binary is trimmed and GOROOT is not set\n")
    		os.Exit(2)
    	}
    	if fi, err := os.Stat(cfg.GOROOT); err != nil || !fi.IsDir() {
    		fmt.Fprintf(os.Stderr, "go: cannot find GOROOT directory: %v\n", cfg.GOROOT)
    		os.Exit(2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/mime/mediatype.go

    // parameters, per RFC 1521.  Media types are the values in
    // Content-Type and Content-Disposition headers (RFC 2183).
    // On success, ParseMediaType returns the media type converted
    // to lowercase and trimmed of white space and a non-nil map.
    // If there is an error parsing the optional parameter,
    // the media type will be returned along with the error
    // [ErrInvalidMediaParameter].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/imports/build.go

    			if x, err := constraint.Parse(text); err == nil {
    				if !eval(x, tags, true) {
    					shouldBuild = false
    				}
    			}
    		}
    	}
    
    	return shouldBuild
    }
    
    func parseFileHeader(content []byte) (trimmed, goBuild []byte, sawBinaryOnly bool, err error) {
    	end := 0
    	p := content
    	ended := false       // found non-blank, non-// line, so stopped accepting // +build lines
    	inSlashStar := false // in /* */ comment
    
    Lines:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. src/debug/pe/file_test.go

    			{".debug_ranges", 0xa70, 0x44000, 0xc00, 0x38a00, 0x0, 0x0, 0x0, 0x0, 0x42100040},
    		},
    	},
    	{
    		// testdata/vmlinuz-4.15.0-47-generic is a trimmed down version of Linux Kernel image.
    		// The original Linux Kernel image is about 8M and it is not recommended to add such a big binary file to the repo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  7. cluster/gce/windows/common.psm1

      param (
        [parameter(Mandatory=$true)] [string]$Path
      )
      # Verify that the $Path is not already in the $env:Path variable.
      $pathForCompare = $Path.TrimEnd('\').ToLower()
      foreach ($p in $env:Path.Split(";")) {
        if ($p.TrimEnd('\').ToLower() -eq $pathForCompare) {
            return
        }
      }
    
      $newMachinePath = $Path + ";" + `
        [System.Environment]::GetEnvironmentVariable("Path","Machine")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  8. cmd/handler-utils.go

    			// parameter for a streaming signature which is set
    			// to a custom value for example: "aws-chunked,gzip".
    			metadata[strings.ToLower(xhttp.ContentEncoding)] = contentEncoding
    		} else {
    			// Trimmed content encoding is empty when the header
    			// value is set to "aws-chunked" only.
    
    			// Make sure to delete the content-encoding parameter
    			// for a streaming signature which is set to value
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/fingerprinting_utils.cc

          }
        }
      }
      return pruned_chunked_message;
    }
    
    std::string SerializeProto(const Message& message) {
      std::string serialized_message;
      {
        // local scope guarantees coded stream will be trimmed (ensures determinism)
        StringOutputStream stream(&serialized_message);
        CodedOutputStream output(&stream);
        output.SetSerializationDeterministic(true);
        message.SerializeToCodedStream(&output);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    	// an empty filename means to use the previous filename.
    	filename := text[:i-1] // lop off ":line"
    	trimmed := false
    	if filename == "" && ok2 {
    		filename = p.base.Filename()
    		trimmed = p.base.Trimmed()
    	}
    
    	p.base = NewLineBase(pos, filename, trimmed, line, col)
    }
    
    func commentText(s string) string {
    	if s[:2] == "/*" {
    		return s[2 : len(s)-2] // lop off /* and */
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top