Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for main2 (0.09 sec)

  1. .teamcity/.mvn/wrapper/maven-wrapper.jar

    MVNW_REPOURL = MVNW_REPOURL; public static final String MVN_VERSION = 3.6.3; public static final String MVN_PATH = org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip; static void <clinit>(); public void MavenWrapperMain(); public static void main(String[]) throws Exception; private static java.util.Map parseSystemPropertie(String[]); private static void addSystemProperties(java.io.File); private static java.io.File rootDir(java.io.File); private static java.io.File wrapperProperties(java.io.File);...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    // Copyright 2015 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.
    
    package main
    
    import (
    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"io"
    	"io/fs"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"time"
    )
    
    func cmdtest() {
    	gogcflags = os.Getenv("GO_GCFLAGS")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/zero_test.go

    // Code generated by gen/zeroGen.go. DO NOT EDIT.
    
    package main
    
    import "testing"
    
    type Z1 struct {
    	pre  [8]byte
    	mid  [1]byte
    	post [8]byte
    }
    
    //go:noinline
    func zero1_ssa(x *[1]byte) {
    	*x = [1]byte{}
    }
    func testZero1(t *testing.T) {
    	a := Z1{[8]byte{255, 255, 255, 255, 255, 255, 255, 255}, [1]byte{255}, [8]byte{255, 255, 255, 255, 255, 255, 255, 255}}
    	zero1_ssa(&a.mid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

        # for the bug where the logging agent cannot start up if the file is
        # corrupted.
        Remove-Item `
          -Force `
          -ErrorAction Ignore `
          ("$STACKDRIVER_ROOT\LoggingAgent\Main\pos\winevtlog.pos\worker0\" +
           "storage.json")
        Log-Output ("Skip: Stackdriver logging agent is already installed")
        return
      }
    
      if (IsLoggingAgentInstalled) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. docs/bucket/notifications/README.md

    ### Step 3: Test on NATS
    
    If you use NATS server, check out this sample program below to log the bucket notification added to NATS.
    
    ```go
    package main
    
    // Import Go and NATS packages
    import (
     "log"
     "runtime"
    
     "github.com/nats-io/nats.go"
    )
    
    func main() {
    
     // Create server connection
     natsConnection, _ := nats.Connect("nats://yourusername:yoursecret@localhost:4222")
     log.Println("Connected")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            }
        }
    
        def "reports problems in buildSrc plugin"() {
            file("buildSrc/src/main/java/SneakyPlugin.java") << """
                import ${Project.name};
                import ${Plugin.name};
    
                public class SneakyPlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // threads will not be deleted.
    //
    // Google Test only uses global ThreadLocal objects.  That means they
    // will die after main() has returned.  Therefore, no per-thread
    // object managed by Google Test will be leaked as long as all threads
    // using Google Test have exited when main() returns.
    template <typename T>
    class ThreadLocal {
     public:
      ThreadLocal() : key_(CreateKey()),
                      default_() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	Pos  token.Position // position of comment
    }
    
    // IsCommand reports whether the package is considered a
    // command to be installed (not just a library).
    // Packages named "main" are treated as commands.
    func (p *Package) IsCommand() bool {
    	return p.Name == "main"
    }
    
    // ImportDir is like [Import] but processes the Go package found in
    // the named directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    	//     abort:      N.A.
    	operationTimestamps metrics.OperationStartTimeCache
    
    	translator               CSINameTranslator
    	csiMigratedPluginManager CSIMigratedPluginManager
    }
    
    // syncClaim is the main controller method to decide what to do with a claim.
    // It's invoked by appropriate cache.Controller callbacks when a claim is
    // created, updated or periodically synced. We do not differentiate between
    // these events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	qsc, err := qsf.BeginConstruction(qCfg, newGaugePair(clk), newExecSeatsGauge(clk), seatDemandIntegratorSubject)
    	if err != nil {
    		t.Fatal(err)
    	}
    	qs := qsComplete(qsc, 1)
    	counter.Add(1) // account for main activity of the goroutine running this test
    	ctx1 := context.Background()
    	pZero := func() *int32 { var zero int32; return &zero }
    	// counts of calls to the QueueNoteFns
    	queueNoteCounts := map[int]map[bool]*int32{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
Back to top