Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for robust (0.23 sec)

  1. src/go/printer/testdata/parser.go

    	scope := ast.NewScope(nil) // struct scope
    	var list []*ast.Field
    	for p.tok == token.IDENT || p.tok == token.MUL || p.tok == token.LPAREN {
    		// a field declaration cannot start with a '(' but we accept
    		// it here for more robust parsing and better error messages
    		// (parseFieldDecl will check and complain if necessary)
    		list = append(list, p.parseFieldDecl(scope))
    	}
    	rbrace := p.expect(token.RBRACE)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"audio/l20",
    				"audio/l24",
    				"audio/l8",
    				"audio/lpc",
    				"audio/midi",
    				"audio/mobile-xmf",
    				"audio/mp4",
    				"audio/mp4a-latm",
    				"audio/mpa",
    				"audio/mpa-robust",
    				"audio/mpeg",
    				"audio/mpeg4-generic",
    				"audio/ogg",
    				"audio/vorbis",
    				"audio/x-oggflac",
    				"audio/x-oggpcm",
    				"audio/opus",
    				"audio/speex",
    				"audio/parityfec",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  3. src/time/time.go

    //	... operation that takes 20 milliseconds ...
    //	t := time.Now()
    //	elapsed := t.Sub(start)
    //
    // Other idioms, such as [time.Since](start), [time.Until](deadline), and
    // time.Now().Before(deadline), are similarly robust against wall clock
    // resets.
    //
    // The rest of this section gives the precise details of how operations
    // use monotonic clocks, but understanding those details is not required
    // to use this package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    // avoid endlessly recursing we tag nodes that we've already visited with this
    // attribute so that we can bail out if we see them a second time.
    //
    // TODO(sanjoy): This method is not robust since it is possible that the
    // optimizations run by PartitionedCall can mutate the cluster arbitrarily,
    // dropping the kXlaAlreadyClustered attributes from all nodes in the process.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    		// the assignments to these fields in Go are safe.
    		//
    		// We use a local static variable to get the zeroed
    		// value of the argument type. This avoids including
    		// string.h for memset, and is also robust to C++
    		// types with constructors. Both GCC and LLVM optimize
    		// this into just zeroing _cgo_a.
    		fmt.Fprintf(fgcc, "\ttypedef %s %v _cgo_argtype;\n", ctype, p.packedAttribute())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

    * Remove unnecessary override of /etc/init.d/docker on containervm image. ([#23593](https://github.com/kubernetes/kubernetes/pull/23593), [@dchen1107](https://github.com/dchen1107))
    * make docker-checker more robust ([#23662](https://github.com/kubernetes/kubernetes/pull/23662), [@ArtfulCoder](https://github.com/ArtfulCoder))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  7. src/testing/testing.go

    //
    // There are standard tools for working with benchmark results at
    // https://golang.org/x/perf/cmd.
    // In particular, https://golang.org/x/perf/cmd/benchstat performs
    // statistically robust A/B comparisons.
    //
    // # Examples
    //
    // The package also runs and verifies example code. Example functions may
    // include a concluding line comment that begins with "Output:" and is compared with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    	lbrace := p.expect(token.LBRACE)
    	var list []*ast.Field
    	for p.tok == token.IDENT || p.tok == token.MUL || p.tok == token.LPAREN {
    		// a field declaration cannot start with a '(' but we accept
    		// it here for more robust parsing and better error messages
    		// (parseFieldDecl will check and complain if necessary)
    		list = append(list, p.parseFieldDecl())
    	}
    	rbrace := p.expect(token.RBRACE)
    
    	return &ast.StructType{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[working_with_files]]
    = Working With Files
    
    File operations are fundamental to nearly every Gradle build.
    They involve handling source files, managing file dependencies, and generating reports.
    Gradle provides a robust API that simplifies these operations, enabling developers to perform necessary file tasks easily.
    
    [[sec:hard_coded_file_paths]]
    == Hardcoded paths and laziness
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // ACK
        peer.acceptFrame() // SYN_STREAM
        peer.acceptFrame() // DATA
        peer.sendFrame().headers(false, 3, headerEntries("a", "android"))
        peer.sendFrame().data(true, 3, Buffer().writeUtf8("robot"), 5)
        peer.acceptFrame() // PING
        peer.sendFrame().ping(true, Http2Connection.AWAIT_PING, 0) // PING
        peer.play()
    
        // Play it back.
        val connection = connect(peer)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top