Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 260 for interesting (0.27 sec)

  1. src/runtime/trace/trace.go

    // See the [net/http/pprof] package for more details about all of the
    // debug endpoints installed by this import.
    //
    // # User annotation
    //
    // Package trace provides user annotation APIs that can be used to
    // log interesting events during execution.
    //
    // There are three types of user annotations: log messages, regions,
    // and tasks.
    //
    // [Log] emits a timestamped message to the execution trace along with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

            }
        }
    
        @Override
        public void artifactDescriptorInvalid(RepositoryEvent event) {
            // The exception stack trace is not really interesting here
            logger.warn(
                    "The POM for {} is invalid, transitive dependencies (if any) will not be available: {}",
                    event.getArtifact(),
                    event.getException().getMessage());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 19:10:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/internal/fuzz/fuzz.go

    	// totalDuration is the time the worker spent testing inputs.
    	totalDuration time.Duration
    
    	// entryDuration is the time the worker spent execution an interesting result
    	entryDuration time.Duration
    }
    
    type fuzzMinimizeInput struct {
    	// entry is an interesting value or crasher to minimize.
    	entry CorpusEntry
    
    	// crasherMsg is an error message from a crash. It's "" if no crash was found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/testprog/stress-start-stop.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a many interesting cases (network, syscalls, a little GC, busy goroutines,
    // blocked goroutines, LockOSThread, pipes, and GOMAXPROCS).
    
    //go:build ignore
    
    package main
    
    import (
    	"bytes"
    	"io"
    	"log"
    	"net"
    	"os"
    	"runtime"
    	"runtime/trace"
    	"sync"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/user/user.go

    	// the same name.
    	GetUID() string
    	// GetGroups returns the names of the groups the user is a member of
    	GetGroups() []string
    
    	// GetExtra can contain any additional information that the authenticator
    	// thought was interesting.  One example would be scopes on a token.
    	// Keys in this map should be namespaced to the authenticator or
    	// authenticator/authorizer pair making use of them.
    	// For instance: "example.org/foo" instead of "foo"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 24 16:21:55 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/stress.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a many interesting cases (network, syscalls, a little GC, busy goroutines,
    // blocked goroutines, LockOSThread, pipes, and GOMAXPROCS).
    
    //go:build ignore
    
    package main
    
    import (
    	"log"
    	"net"
    	"os"
    	"runtime"
    	"runtime/trace"
    	"sync"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaModule.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * Generates an IDEA module file. If you want to fine tune the idea configuration
     * <p>
     * Please refer to interesting examples on idea configuration in {@link IdeaModule}.
     * <p>
     * At this moment nearly all configuration is done via {@link IdeaModule}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/web-platform-test-toascii.json

        "input": "\u00AD",
        "output": null
      },
      {
        "input": "%C2%AD",
        "output": null
      },
      {
        "input": "xn--",
        "output": null
      },
      {
        "comment": "Interesting UseSTD3ASCIIRules=false cases",
        "input": "≠",
        "output": "xn--1ch"
      },
      {
        "input": "≮",
        "output": "xn--gdh"
      },
      {
        "input": "≯",
        "output": "xn--hdh"
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    #define NOP2S20 NOP2S18 NOP2S18 NOP2S18 NOP2S18
    #define NOP2S22 NOP2S20 NOP2S20 NOP2S20 NOP2S20
    #define NOP2S24 NOP2S22 NOP2S22 NOP2S22 NOP2S22
    #define BIGNOP NOP2S24 NOP2S24 NOP2S10
    // A very big not very interesting function.
    TEXT bar·Bar(SB),0,$0-0
            BIGNOP
    
    -- bar/bar.go --
    
    package bar
    
    func Bar()
    
    func Bar2() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. src/flag/example_test.go

    	// Tie the command-line flag to the intervalFlag variable and
    	// set a usage message.
    	flag.Var(&intervalFlag, "deltaT", "comma-separated list of intervals to use between events")
    }
    
    func Example() {
    	// All the interesting pieces are with the variables declared above, but
    	// to enable the flag package to see the flags defined there, one must
    	// execute, typically at the start of main (not init!):
    	//	flag.Parse()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 18:59:00 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top