Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 98 of 98 for Parses (0.1 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    			flags = flags + "=" + value
    		} else {
    			flags = flags + "=CLASSIFIED"
    		}
    		return nil
    	}
    	var err error
    	err = cmd.Flags().ParseAll(os.Args[1:], parseFunc)
    	if err != nil || !cmd.Flags().Parsed() {
    		return ""
    	}
    
    	args := ""
    	if arguments := cmd.Flags().Args(); len(arguments) > 0 {
    		args = " " + strings.Join(arguments, " ")
    	}
    
    	base := filepath.Base(os.Args[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            withLibraryDependencies<DependencyRemovalByNameRule>(libs.samplesCheck, setOf("slf4j-simple"))
    
            // asciidoctorj depends on a lot of stuff, which causes `Can't create process, argument list too long` on Windows
            withLibraryDependencies<DependencyRemovalByNameRule>("org.gradle:sample-discovery", setOf("asciidoctorj", "asciidoctorj-api"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. cmd/bitrot-streaming.go

    }
    
    func (b *streamingBitrotWriter) Close() error {
    	// Close the underlying writer.
    	// This will also flush the ring buffer if used.
    	err := b.iow.Close()
    
    	// Wait for all data to be written before returning else it causes race conditions.
    	// Race condition is because of io.PipeWriter implementation. i.e consider the following
    	// sequent of operations:
    	// 1) pipe.Write()
    	// 2) pipe.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	}
    	ver, err := version.ParseSemantic(resp.Version)
    	if err != nil {
    		// Assume feature is not supported if etcd version cannot be parsed.
    		klog.ErrorS(err, "Failed to parse etcd version", "version", resp.Version)
    		return false, nil
    	}
    	if ver.LessThan(v3_4_31) || ver.AtLeast(v3_5_0) && ver.LessThan(v3_5_13) {
    		return false, nil
    	}
    	return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/crypto/tls/key_schedule.go

    		// impossible for this to panic, and routing errors back through the
    		// tree rooted in this function is quite painful. The labels are fixed
    		// size, and the context is either a fixed-length computed hash, or
    		// parsed from a field which has the same length limitation. As such, an
    		// error here is likely to only be caused during development.
    		//
    		// NOTE: another reasonable approach here might be to return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/internal/cpu/cpu.go

    	Feature   *bool
    	Specified bool // whether feature value was specified in GODEBUG
    	Enable    bool // whether feature should be enabled
    }
    
    // processOptions enables or disables CPU feature values based on the parsed env string.
    // The env string is expected to be of the form cpu.feature1=value1,cpu.feature2=value2...
    // where feature names is one of the architecture specific list stored in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/go/types/example_test.go

    // To load, parse, and type-check a complete Go program
    // from source, use golang.org/x/tools/go/loader.
    
    import (
    	"fmt"
    	"go/ast"
    	"go/format"
    	"go/importer"
    	"go/parser"
    	"go/token"
    	"go/types"
    	"log"
    	"regexp"
    	"slices"
    	"strings"
    )
    
    // ExampleScope prints the tree of Scopes of a package created from a
    // set of parsed files.
    func ExampleScope() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/internal/trace/internal/testgen/go122/trace.go

    // ExpectFailure writes down that the trace should be broken. The caller
    // must provide a pattern matching the expected error produced by the parser.
    func (t *Trace) ExpectFailure(pattern string) {
    	t.bad = true
    	t.badMatch = regexp.MustCompile(pattern)
    }
    
    // ExpectSuccess writes down that the trace should successfully parse.
    func (t *Trace) ExpectSuccess() {
    	t.bad = false
    }
    
    // RawEvent emits an event into the trace. name must correspond to one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top