Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 353 for creators (0.18 sec)

  1. src/internal/trace/raw/textreader.go

    // into an event stream.
    type TextReader struct {
    	v     version.Version
    	specs []event.Spec
    	names map[string]event.Type
    	s     *bufio.Scanner
    }
    
    // NewTextReader creates a new reader for the trace text format.
    func NewTextReader(r io.Reader) (*TextReader, error) {
    	tr := &TextReader{s: bufio.NewScanner(r)}
    	line, err := tr.nextLine()
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    		flags = append(flags, options.APIServerAdvertiseAddress)
    	}
    	if name != "update-status" {
    		flags = append(flags, options.DryRun)
    	}
    	return flags
    }
    
    // NewControlPlaneJoinPhase creates a kubeadm workflow phase that implements joining a machine as a control plane instance
    func NewControlPlaneJoinPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-join",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pkg/kubelet/container/helpers.go

    	}
    
    	if len(container.Args) != 0 {
    		for _, arg := range container.Args {
    			args = append(args, expansion.Expand(arg, mapping))
    		}
    	}
    
    	return command, args
    }
    
    // FilterEventRecorder creates an event recorder to record object's event except implicitly required container's, like infra container.
    func FilterEventRecorder(recorder record.EventRecorder) record.EventRecorder {
    	return &innerEventRecorder{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	dir           telemetry.Dir           // the telemetry dir to process
    
    	uploadServerURL string
    	startTime       time.Time
    
    	cache parsedCache
    
    	logFile *os.File
    	logger  *log.Logger
    }
    
    // newUploader creates a new uploader to use for running the upload for the
    // given config.
    //
    // Uploaders should only be used for one call to [uploader.Run].
    func newUploader(rcfg RunConfig) (*uploader, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	WinBuiltinDeviceOwnersSid                     = 119
    )
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    // Win*Sid, for the local machine.
    func CreateWellKnownSid(sidType WELL_KNOWN_SID_TYPE) (*SID, error) {
    	return CreateWellKnownDomainSid(sidType, nil)
    }
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       * instead of the time until the user-specified delay.
       */
      public static ListeningScheduledExecutorService noOpScheduledExecutor() {
        return new NoOpScheduledExecutorService();
      }
    
      /**
       * Creates a scheduled executor service that runs each task in the thread that invokes {@code
       * execute/submit/schedule}, as in {@link CallerRunsPolicy}. This applies both to individually
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/hash/crc64/crc64.go

    			helperTable[j][i] = crc
    		}
    	}
    	return &helperTable
    }
    
    // digest represents the partial evaluation of a checksum.
    type digest struct {
    	crc uint64
    	tab *Table
    }
    
    // New creates a new hash.Hash64 computing the CRC-64 checksum using the
    // polynomial represented by the [Table]. Its Sum method will lay the
    // value out in big-endian byte order. The returned Hash64 also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/nowb.go

    	curfn *ir.Func
    }
    
    type nowritebarrierrecCall struct {
    	target *ir.Func // caller or callee
    	lineno src.XPos // line of call
    }
    
    // newNowritebarrierrecChecker creates a nowritebarrierrecChecker. It
    // must be called before walk.
    func newNowritebarrierrecChecker() *nowritebarrierrecChecker {
    	c := &nowritebarrierrecChecker{
    		extraCalls: make(map[*ir.Func][]nowritebarrierrecCall),
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

        }
    
        @Nullable
        public String getWorkerTmpDir() {
            return System.getProperty("org.gradle.internal.worker.tmpdir");
        }
    
        /**
         * Creates an instance for a Factory implementation with a system property set to a given value.  Sets the system property back to the original value (or
         * clears it if it was never set) after the operation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. internal/config/lambda/target/webhook.go

    	yes, err := target.isActive()
    	if err != nil {
    		return err
    	}
    	if !yes {
    		return errNotConnected
    	}
    
    	return nil
    }
    
    // NewWebhookTarget - creates new Webhook target.
    func NewWebhookTarget(ctx context.Context, id string, args WebhookArgs, loggerOnce logger.LogOnce, transport *http.Transport) (*WebhookTarget, error) {
    	ctx, cancel := context.WithCancel(ctx)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top