Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for log_lines (0.15 sec)

  1. ci/official/utilities/extract_resultstore_links.py

      """Finds ResultStore links, and tries to determine their status."""
      with open(file_path, 'r', encoding='utf-8', errors='ignore') as f:
        log_lines = f.read().splitlines()
    
      result_store_links: ResultDictType = {}
      current_url = None
      for i in range(len(log_lines)):
        line = log_lines[i]
        result_store_line_match = re.search(RESULT_STORE_LINK_RE, line)
        if not result_store_line_match:
          continue
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

            }
            waitingForChangesMessageAppears()
    
            when:
            def logLengthBeforeOpeneningGatekeeper = logLines.size()
            gatekeeper.open()
            // Wait to make sure the build is not triggered
            Thread.sleep(500)
            then:
            logLines.size() == logLengthBeforeOpeneningGatekeeper
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. docs/en/docs/js/termynal.js

                || this.container.getAttribute(`${this.pfx}-cursor`) || '▋';
            this.lineData = this.lineDataToElements(options.lineData || []);
            this.loadLines()
            if (!options.noInit) this.init()
        }
    
        loadLines() {
            // Load all the lines and create the container so that the size is fixed
            // Otherwise it would be changing and the user viewport would be constantly
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tfcompile.bzl

        output_dict = {}
        output_dict["header_files"] = [header_file]
        output_dict["object_files"] = [metadata_object_file, function_object_file]
        if compiler_log_file:
            output_dict["log_files"] = [compiler_log_file]
    
        output_flags = [
            "--out_header=" + header_file.path,
            "--out_metadata_object=" + metadata_object_file.path,
            "--out_function_object=" + function_object_file.path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			err := h.rotateDEKOnKeyIDChange(ctx, tt.statusKeyID, "panda")
    
    			klog.Flush()
    			klog.SetOutput(io.Discard) // prevent further writes into buf
    
    			if diff := cmp.Diff(tt.wantLogs, logLines(buf.String())); len(diff) > 0 {
    				t.Errorf("log mismatch (-want +got):\n%s", diff)
    			}
    
    			ignoredFields := sets.NewString("Transformer", "EncryptedObject.EncryptedDEKSource", "UID", "CacheKey")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    )
    
    func (c *Config) writeKeyLog(label string, clientRandom, secret []byte) error {
    	if c.KeyLogWriter == nil {
    		return nil
    	}
    
    	logLine := fmt.Appendf(nil, "%s %x %x\n", label, clientRandom, secret)
    
    	writerMutex.Lock()
    	_, err := c.KeyLogWriter.Write(logLine)
    	writerMutex.Unlock()
    
    	return err
    }
    
    // writerMutex protects all KeyLogWriters globally. It is rarely enabled,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top