Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for rawlog (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/IvyLoggingAdaper.java

        @Override
        public void log(String msg, int level) {
            logger.log(LogLevelMapping.ANT_IVY_2_SLF4J.get(level), msg);
        }
    
        @Override
        public void rawlog(String msg, int level) {
            log(msg, level);
        }
    
        /**
         * Overrides the default implementation, which doesn't delegate to {@link #log(String, int)}.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

            when: "another build requested with the same daemon"
            executer.withArguments("-i").run()
    
            then:
            def aLog = readLog(executer.daemonBaseDir)
    
            aLog.count(DaemonMessages.PROCESS_STARTED) == 1
            aLog.count(DaemonMessages.STARTED_RELAYING_LOGS) == 2
            aLog.count('Hello build!') == 2
        }
    
        def "background daemon infrastructure logs with DEBUG"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. src/math/tanh.go

    //
    //      Hyperbolic tangent
    //
    // SYNOPSIS:
    //
    // double x, y, tanh();
    //
    // y = tanh( x );
    //
    // DESCRIPTION:
    //
    // Returns hyperbolic tangent of argument in the range MINLOG to MAXLOG.
    //      MAXLOG = 8.8029691931113054295988e+01 = log(2**127)
    //      MINLOG = -8.872283911167299960540e+01 = log(2**-128)
    //
    // A rational function is used for |x| < 0.625.  The form
    // x + x**3 P(x)/Q(x) of Cody & Waite is employed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/allocators.go

    			clear:    "for i := range %[1]s {\n%[1]s[i] = nil\n}",
    			minLog:   5,
    			maxLog:   32,
    		},
    		{
    			name:     "Int64Slice",
    			typ:      "[]int64",
    			capacity: "cap(%s)",
    			mak:      "make([]int64, %s)",
    			resize:   "%s[:%s]",
    			clear:    "for i := range %[1]s {\n%[1]s[i] = 0\n}",
    			minLog:   5,
    			maxLog:   32,
    		},
    		{
    			name:     "SparseSet",
    			typ:      "*sparseSet",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cmdflag/flag.go

    }
    
    // A NonFlagError indicates an argument that is not a syntactically-valid flag.
    type NonFlagError struct {
    	RawArg string
    }
    
    func (e NonFlagError) Error() string {
    	return fmt.Sprintf("not a flag: %q", e.RawArg)
    }
    
    // ParseOne sees if args[0] is present in the given flag set and if so,
    // sets its value and returns the flag along with the remaining (unused) arguments.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 02:38:04 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. cluster/addons/kube-proxy/kube-proxy-ds.yaml

              privileged: true
            volumeMounts:
            - mountPath: /var/log
              name: varlog
              readOnly: false
            - mountPath: /run/xtables.lock
              name: xtables-lock
              readOnly: false
            - mountPath: /lib/modules
              name: lib-modules
              readOnly: true
          volumes:
          - name: varlog
            hostPath:
              path: /var/log
          - name: xtables-lock
            hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 01:01:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/testflag.go

    			}
    
    			if nd.RawArg == "-args" || nd.RawArg == "--args" {
    				// -args or --args signals that everything that follows
    				// should be passed to the test.
    				explicitArgs = append(explicitArgs, remainingArgs...)
    				break
    			}
    
    			if firstUnknownFlag == "" {
    				firstUnknownFlag = nd.RawArg
    			}
    
    			explicitArgs = append(explicitArgs, nd.RawArg)
    			args = remainingArgs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. cluster/gce/manifests/kube-proxy.manifest

        - mountPath: /etc/ssl/certs
          name: etc-ssl-certs
          readOnly: true
        - mountPath: /usr/share/ca-certificates
          name: usr-ca-certs
          readOnly: true
        - mountPath: /var/log
          name: varlog
          readOnly: false
        - mountPath: /var/lib/kube-proxy/kubeconfig
          name: kubeconfig
          readOnly: false
        - mountPath: /run/xtables.lock
          name: iptableslock
          readOnly: false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pkg/test/echo/server/forwarder/config.go

    			if err != nil {
    				fwLog.Errorf("Failed to parse client certificate: %v", err)
    			}
    			fwLog.Debugf("Using client certificate [%s] issued by %s", cert.SerialNumber, cert.Issuer)
    			for _, uri := range cert.URIs {
    				fwLog.Debugf("  URI SAN: %s", uri)
    			}
    		}
    		// nolint: unparam
    		return func(info *tls.CertificateRequestInfo) (*tls.Certificate, error) {
    			fwLog.Debugf("Peer asking for client certificate")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. cluster/addons/kube-network-policies/kube-network-policies.yaml

            securityContext:
              privileged: true
            volumeMounts:
            - mountPath: /var/log
              name: varlog
              readOnly: false
            - mountPath: /lib/modules
              name: lib-modules
              readOnly: true
          volumes:
          - name: varlog
            hostPath:
              path: /var/log
          - name: lib-modules
            hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:27:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top