Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 95 of 95 for printsp (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			got := validateClaimMappings(compiler, state, tt.in, fldPath, tt.structuredAuthnFeatureEnabled).ToAggregate()
    			if d := cmp.Diff(tt.want, errString(got)); d != "" {
    				fmt.Println(errString(got))
    				t.Fatalf("ClaimMappings validation mismatch (-want +got):\n%s", d)
    			}
    			if tt.wantCELMapper {
    				if len(tt.in.Username.Expression) > 0 && state.mapper.Username == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    	const dots = ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    	const n = len(dots)
    	pos := p.file.Position(p.pos)
    	fmt.Printf("%5d:%3d: ", pos.Line, pos.Column)
    	i := 2 * p.indent
    	for i > n {
    		fmt.Print(dots)
    		i -= n
    	}
    	// i <= n
    	fmt.Print(dots[0:i])
    	fmt.Println(a...)
    }
    
    func trace(p *parser, msg string) *parser {
    	p.printTrace(msg, "(")
    	p.indent++
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [source,groovy]
    ----
    task moveFile {
        doLast {
            def sourceFile = file('source.txt')
            def destFile = file('destination/new_name.txt')
    
            if (sourceFile.renameTo(destFile)) {
                println "File moved successfully."
            }
        }
    }
    
    ----
    
    === Using the `Copy` task
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    				*flagLibGCC = ctxt.findLibPathCmd("--print-libgcc-file-name", "libgcc")
    			}
    			if runtime.GOOS == "openbsd" && *flagLibGCC == "libgcc.a" {
    				// On OpenBSD `clang --print-libgcc-file-name` returns "libgcc.a".
    				// In this case we fail to load libgcc.a and can encounter link
    				// errors - see if we can find libcompiler_rt.a instead.
    				*flagLibGCC = ctxt.findLibPathCmd("--print-file-name=libcompiler_rt.a", "libcompiler_rt")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/os/os_test.go

    		t.Skipf("%s doesn't have /bin/sh", runtime.GOOS)
    	}
    
    	if Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		st, err := Stdin.Stat()
    		if err != nil {
    			t.Fatalf("Stat failed: %v", err)
    		}
    		fmt.Println(st.Mode() & ModeNamedPipe)
    		Exit(0)
    	}
    
    	exe, err := Executable()
    	if err != nil {
    		t.Skipf("can't find executable: %v", err)
    	}
    
    	testenv.MustHaveExec(t)
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top