Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for Verbose (0.22 sec)

  1. src/testing/example.go

    //
    // If stdout doesn't match the expected output or if recovered is non-nil, it'll print the cause of failure to stdout.
    // If the test is chatty/verbose, it'll print a success message to stdout.
    // If recovered is non-nil, it'll panic with that value.
    // If the test panicked with nil, or invoked runtime.Goexit, it'll be
    // made to fail and panic with errNilPanicOrGoexit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/internal/bisect/bisect.go

    		m.quiet = true
    		p = p[1:]
    		if p == "" {
    			return nil, &parseError{"invalid pattern syntax: " + pattern}
    		}
    	}
    	// Allow multiple v, so that “bisect cmd vPATTERN” can force verbose all the time.
    	for len(p) > 0 && p[0] == 'v' {
    		m.verbose = true
    		m.quiet = false
    		p = p[1:]
    		if p == "" {
    			return nil, &parseError{"invalid pattern syntax: " + pattern}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/proxyconfig.go

    					},
    					configdump.ListenerFilter{
    						Address: address,
    						Port:    uint32(port),
    						Type:    listenerType,
    						Verbose: verboseProxyConfig,
    					},
    					configdump.RouteFilter{
    						Name:    routeName,
    						Verbose: verboseProxyConfig,
    					},
    					configdump.EndpointFilter{
    						Address: address,
    						Port:    uint32(port),
    						Cluster: clusterName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stdlib_test.go

    				wg.Done()
    				<-cpulimit
    			}()
    
    			_, err := c.getDirPackage(dir)
    			if err != nil {
    				t.Errorf("error checking %s: %v", dir, err)
    			}
    		}()
    	}
    
    	wg.Wait()
    
    	if testing.Verbose() {
    		fmt.Println(len(dirFiles), "packages typechecked in", time.Since(start))
    	}
    }
    
    // stdlibChecker implements concurrent type-checking of the packages defined by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    [[sec:command_line_logging]]
    == Logging options
    
    === Setting log level
    You can customize the <<logging.adoc#logging,verbosity>> of Gradle logging with the following options, ordered from least verbose to most verbose.
    
    `-Dorg.gradle.logging.level=(quiet,warn,lifecycle,info,debug)`::
    A <<build_environment.adoc#sec:gradle_configuration_properties,Gradle property>> that sets the logging level.
    
    `-q`, `--quiet`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[logging]]
    = Logging
    
    The log serves as the primary 'UI' of a build tool.
    If it becomes overly verbose, important warnings and issues can be obscured.
    However, it is essential to have relevant information to determine if something has gone wrong.
    
    Gradle defines six log levels, detailed in <<#logLevels,Log levels>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. prow/integ-suite-kind.sh

    export VARIANT
    
    # If we're not intending to pull from an actual remote registry, use the local kind registry
    if [[ -z "${SKIP_BUILD:-}" ]]; then
      HUB="${KIND_REGISTRY}"
      export HUB
    fi
    
    # Setup junit report and verbose logging
    export T="${T:-"-v -count=1"}"
    export CI="true"
    
    export ARTIFACTS="${ARTIFACTS:-$(mktemp -d)}"
    trace "init" make init
    
    if [[ -z "${SKIP_SETUP:-}" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. cni/pkg/install/kubeconfig.go

    	}
    
    	// Log with redaction
    	if err := api.RedactSecrets(kcfg); err != nil {
    		return kubeconfig{}, err
    	}
    	for _, c := range kcfg.Clusters {
    		// Not actually sensitive, just annoyingly verbose.
    		c.CertificateAuthority = "REDACTED"
    	}
    	lrcfg, err := latest.Scheme.ConvertToVersion(kcfg, latest.ExternalVersion)
    	if err != nil {
    		return kubeconfig{}, err
    	}
    	redacted, err := yaml.Marshal(lrcfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    			klog.V(6).Infof("cannot exclude some health checks, no health checks are installed matching %s",
    				formatQuoted(excluded.List()...))
    		}
    		// always be verbose on failure
    		if len(failedChecks) > 0 {
    			klog.V(2).Infof("%s check failed: %s\n%v", strings.Join(failedChecks, ","), name, failedVerboseLogOutput.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        projects = 1
        sourceFiles = 10
        subProjectTemplates << 'with-verbose-testng'
        daemonMemory = '256m'
    }
    performanceTest.registerTestProject("withVerboseJUnit", JvmProjectGeneratorTask) {
        projects = 1
        sourceFiles = 10
        subProjectTemplates << 'with-verbose-junit'
        daemonMemory = '256m'
    }
    
    //TODO replace with direct task objects creation in test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top