Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,097 for startingAt (0.24 sec)

  1. src/runtime/checkptr_test.go

    			}
    			if tc.want == "" {
    				if len(got) > 0 {
    					t.Errorf("output:\n%s\nwant no output", got)
    				}
    				return
    			}
    			if !strings.HasPrefix(string(got), tc.want) {
    				t.Errorf("output:\n%s\n\nwant output starting with: %s", got, tc.want)
    			}
    		})
    	}
    }
    
    func TestCheckPtr2(t *testing.T) {
    	// This test requires rebuilding packages with -d=checkptr=2,
    	// so it's somewhat slow.
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 17:15:15 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/UserInputStandardOutputRenderer.java

        public UserInputStandardOutputRenderer(OutputEventListener delegate, GlobalUserInputReceiver userInput) {
            super(delegate, userInput);
        }
    
        @Override
        void startInput() {
        }
    
        @Override
        void handlePrompt(RenderableOutputEvent event) {
            delegate.onOutput(event);
        }
    
        @Override
        void finishInput(RenderableOutputEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/JobHelper.java

            };
            findJobByUniqueOf(LaJobUnique.of(id)).ifPresent(job -> {
                if (!job.isUnscheduled()) {
                    if (StringUtil.isNotBlank(scheduledJob.getCronExpression())) {
                        logger.info("Starting Job {}:{}", id, scheduledJob.getName());
                        final String cronExpression = scheduledJob.getCronExpression();
                        job.reschedule(cronExpression, op -> op.changeNoticeLogToDebug().params(paramsOp));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/cmd/bisect/rand.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.
    
    // Starting in Go 1.20, the global rand is auto-seeded,
    // with a better value than the current Unix nanoseconds.
    // Only seed if we're using older versions of Go.
    
    //go:build !go1.20
    
    package main
    
    import (
    	"math/rand"
    	"time"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 442 bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionStructureVisitor.java

        }
    
        /**
         * Called when starting to visit a file collection. Can return true to continue with visiting or false to skip this collection and its contents.
         *
         * <p>When a file collection represents a container of file collections, the children of the file collection are visited in order. Visiting a child works in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/log/slog/example_custom_levels_test.go

    	logger.Info("initiating launch")
    	logger.Debug("starting background job")
    	logger.Log(ctx, LevelTrace, "button clicked")
    
    	// Output:
    	// sev=EMERGENCY msg="missing pilots"
    	// sev=ERROR msg="failed to start engines" err="missing fuel"
    	// sev=WARNING msg="falling back to default value"
    	// sev=NOTICE msg="all systems are running"
    	// sev=INFO msg="initiating launch"
    	// sev=DEBUG msg="starting background job"
    	// sev=TRACE msg="button clicked"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/sds/server.go

    	s.workloadSds.register(s.grpcWorkloadServer)
    	var err error
    	s.grpcWorkloadListener, err = uds.NewListener(security.WorkloadIdentitySocketPath)
    	go func() {
    		sdsServiceLog.Info("Starting SDS grpc server")
    		waitTime := time.Second
    		started := false
    		for i := 0; i < maxRetryTimes; i++ {
    			if s.stopped.Load() {
    				return
    			}
    			serverOk := true
    			setUpUdsOK := true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         * @since 6.1
         */
        Provider<String> environmentVariable(Provider<String> variableName);
    
        /**
         * Creates a {@link Provider} whose value is a name-to-value map of the environment variables with the names starting with the given prefix.
         * The prefix comparison is case-sensitive. The returned map is immutable.
         *
         * @param variableNamePrefix The prefix of the environment variable names
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/testdata/output/format_txt_with_time_filter.log

    2020-06-29T23:37:27.336155Z	info	Channel switches to new LB policy "pick_first"
    2020-06-29T23:37:27.336189Z	info	Subchannel Connectivity change to CONNECTING
    2020-06-29T23:37:27.336222Z	info	Starting gateway SDS
    2020-06-29T23:37:27.336491Z	info	pickfirstBalancer: HandleSubConnStateChange: 0xc00087d1e0, {CONNECTING <nil>}
    2020-06-29T23:37:27.336645Z	info	Channel Connectivity change to CONNECTING
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 578 bytes
    - Viewed (0)
  10. maven-embedder/src/site/apt/logging.apt

     / {{{https://codehaus-plexus.github.io/plexus-containers/plexus-container-default/apidocs/org/codehaus/plexus/logging/Logger.html}Logger}}.
    
     Starting with Maven 3.1.0:
    
      *  Maven supports SLF4J API logging API too, ie {{{http://slf4j.org/apidocs/org/slf4j/LoggerFactory.html}LoggerFactory}} /
         {{{http://slf4j.org/apidocs/org/slf4j/Logger.html}Logger}},
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top