Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 742 for RECORD (0.11 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/JsseDebugLogging.kt

        System.setProperty("javax.net.debug", "")
        return OkHttpDebugLogging.enable(
          "javax.net.ssl",
          object : Handler() {
            override fun publish(record: LogRecord) {
              val param = record.parameters?.firstOrNull() as? String
              debugHandler(JsseDebugMessage(record.message, param))
            }
    
            override fun flush() {
            }
    
            override fun close() {
            }
          },
        )
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                Object obj = cache.get(session, cacheKey);
                if (obj instanceof Record) {
                    Record record = (Record) obj;
                    result.setVersion(record.version);
                    result.setRepository(
                            getRepository(session, request.getRepositories(), record.repoClass, record.repoId));
                    return result;
                }
            }
    
            Metadata metadata;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

            }
        }
    
        private void evaluate() {
            evaluator.evaluate(project, state)
        }
    
        static void assertConfigureOp(TestBuildOperationRunner.Log.Record op, Throwable failureCause = null) {
            assert op.descriptor.name == 'Configure project :project1'
            assert op.descriptor.displayName == 'Configure project :project1'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/runtime/profbuf.go

    // entry in the fields overflow and overflowTime. The pending overflow
    // entry can be turned into a real record by either the writer or the
    // reader. If the writer is called to write a new record and finds that
    // the output buffer has room for both the pending overflow entry and the
    // new record, the writer emits the pending overflow entry and the new
    // record into the buffer. If the reader is called to read data and finds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            outputs.recompiledClasses('Person')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/14744")
        @Requires(UnitTestPreconditions.Jdk16OrLater)
        def "recompiles record consumer and record when record is changed"() {
            given:
            file("src/main/${languageName}/Library.${languageName}") << """
                public class Library {
                    public boolean foo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/tools/op_quant_spec_getters_gen.cc

    #include "llvm/Support/Regex.h"
    #include "llvm/TableGen/Main.h"
    #include "llvm/TableGen/Record.h"
    #include "llvm/TableGen/TableGenBackend.h"
    #include "mlir/TableGen/Operator.h"  // from @llvm-project
    #include "mlir/TableGen/Trait.h"  // from @llvm-project
    
    using llvm::LessRecord;
    using llvm::raw_ostream;
    using llvm::Record;
    using llvm::RecordKeeper;
    using mlir::tblgen::Operator;
    
    // Helper macro that returns indented os.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 11:18:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              // Plaintext after DECRYPTION
              val message = record.message
              val parameters = record.parameters
    
              if (parameters != null && !message.startsWith("Raw") && !message.startsWith("Plaintext")) {
                if (verbose) {
                  println(record.message)
                  println(record.parameters[0])
                }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. tensorflow/c/tf_status.h

    TF_CAPI_EXPORT extern void TF_DeleteStatus(TF_Status*);
    
    // Record <code, msg> in *s.  Any previous information is lost.
    // A common use is to clear a status: TF_SetStatus(s, TF_OK, "");
    TF_CAPI_EXPORT extern void TF_SetStatus(TF_Status* s, TF_Code code,
                                            const char* msg);
    
    // Record <key, value> as a payload in *s. The previous payload having the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/testing/slogtest/slogtest.go

    	// the body of f must appear on a single line whose first
    	// non-whitespace characters are "l.".
    	f func(*slog.Logger)
    	// If mod is not nil, it is called to modify the Record
    	// generated by the Logger before it is passed to the Handler.
    	mod func(*slog.Record)
    	// checks is a list of checks to run on the result.
    	checks []check
    }
    
    var cases = []testCase{
    	{
    		name:        "built-ins",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/log/slog/handler.go

    }
    
    func (s *handleState) appendNonBuiltIns(r Record) {
    	// preformatted Attrs
    	if pfa := s.h.preformattedAttrs; len(pfa) > 0 {
    		s.buf.WriteString(s.sep)
    		s.buf.Write(pfa)
    		s.sep = s.h.attrSep()
    		if s.h.json && pfa[len(pfa)-1] == '{' {
    			s.sep = ""
    		}
    	}
    	// Attrs in Record -- unlike the built-in ones, they are in groups started
    	// from WithGroup.
    	// If the record has no Attrs, don't output any groups.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top