Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for splitLine (0.18 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                    // After splitting at the JAR separator, it is regarded as a root directory "/java.base".
                    // To work with LibraryPathFilter, a hacky workaround here is to remove "modules/" from actual file path.
                    // e.g. "/path/to/jdk/home!/java.base/java/lang/Object.class", which, from Path viewpoint, belongs to "/java.base",
                    // after splitting at the JAR separator, in a similar way.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. internal/logger/console.go

    	// Build the passed error message
    	errMsg := fmt.Sprintf(msg, args...)
    
    	tagPrinted := false
    
    	// Print the error message: the following code takes care
    	// of splitting error text and always pretty printing the
    	// red banner along with the error message. Since the error
    	// message itself contains some colored text, we needed
    	// to use some ANSI control escapes to cursor color state
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/trace/main.go

    		pct := float64(lost) / float64(parsed.size) * 100
    		log.Printf("Lost %.2f%% of the latest trace data due to error (%s of %s)", pct, byteCount(lost), byteCount(parsed.size))
    	}
    
    	log.Print("Splitting trace for viewer...")
    	ranges, err := splitTrace(parsed)
    	if err != nil {
    		logAndDie(err)
    	}
    
    	log.Printf("Opening browser. Trace viewer is listening on %s", addr)
    	browser.Open(addr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. gradlew

    #       options in "$@", and eventually passing that to Java.
    #
    #       Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
    #       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
    #       see the in-line comments for details.
    #
    #       There are tweaks for specific operating systems such as AIX, CygWin,
    #       Darwin, MinGW, and NonStop.
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/patches/patches.go

    	}
    	patchType := patchTypes[sub[4]]
    
    	return targetName, patchType, nil, nil
    }
    
    // createPatchSet creates a patchSet object, by splitting the given "data" by "\n---".
    func createPatchSet(targetName string, patchType types.PatchType, data string) (*patchSet, error) {
    	var patches []string
    
    	// Split the patches and convert them to JSON.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/plugin_test.go

    	run(t, "./issue62430.exe")
    }
    
    func TestTextSectionSplit(t *testing.T) {
    	globalSkip(t)
    	if runtime.GOOS != "darwin" || runtime.GOARCH != "arm64" {
    		t.Skipf("text section splitting is not done in %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    
    	// Use -ldflags=-debugtextsize=262144 to let the linker split text section
    	// at a smaller size threshold, so it actually splits for the test binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/archive/tar/writer.go

    		tw.err = tw.writeGNUHeader(&tw.hdr)
    		return tw.err
    	default:
    		return err // Non-fatal error
    	}
    }
    
    func (tw *Writer) writeUSTARHeader(hdr *Header) error {
    	// Check if we can use USTAR prefix/suffix splitting.
    	var namePrefix string
    	if prefix, suffix, ok := splitUSTARPath(hdr.Name); ok {
    		namePrefix, hdr.Name = prefix, suffix
    	}
    
    	// Pack the main header.
    	var f formatter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. cmd/encryption-v1.go

    			if err != nil {
    				return false
    			}
    		}
    	}
    
    	// Further check if this object is uploaded using multipart mechanism
    	// by the user and it is not about Erasure internally splitting the
    	// object into parts in PutObject()
    	return len(o.ETag) != 32
    }
    
    // ParseSSECopyCustomerRequest parses the SSE-C header fields of the provided request.
    // It returns the client provided key on success.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. configure.py

            ask_cuda_compute_capabilities, default_cuda_compute_capabilities)
        # Check whether all capabilities from the input is valid
        all_valid = True
        # Remove all whitespace characters before splitting the string
        # that users may insert by accident, as this will result in error
        tf_cuda_compute_capabilities = ''.join(tf_cuda_compute_capabilities.split())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    section of the stack.  On amd64, morestack's frame is 40 bytes, and
    deferproc's frame is 56 bytes.  That fits well within the
    StackGuard - StackSmall bytes at the bottom.
    The linkers explore all possible call traces involving non-splitting
    functions to make sure that this limit cannot be violated.
    */
    
    const (
    	// stackSystem is a number of additional bytes to add
    	// to each stack below the usual guard area for OS-specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top