Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for initiatives (0.17 sec)

  1. src/runtime/runtime.go

    var ticks ticksType
    
    type ticksType struct {
    	// lock protects access to start* and val.
    	lock       mutex
    	startTicks int64
    	startTime  int64
    	val        atomic.Int64
    }
    
    // init initializes ticks to maximize the chance that we have a good ticksPerSecond reference.
    //
    // Must not run concurrently with ticksPerSecond.
    func (t *ticksType) init() {
    	lock(&ticks.lock)
    	t.startTime = nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDuplicateShapeDeterminingConstantsPass();
    
    // Creates a pass that creates a RestoreV2 op in the initializer function with
    // type "restore_op" that initializes variables from the checkpoint. It finds
    // tf.AssignVariableOp(tf.VarHandleOp, tf.Const) patterns in the initializer
    // function and replaces tf.Consts with the results of RestoreV2.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/start.go

    	UploadStartTime time.Time
    
    	// UploadURL, if set, overrides the URL used to receive uploaded reports. If
    	// unset, this URL defaults to https://telemetry.go.dev/upload.
    	UploadURL string
    }
    
    // Start initializes telemetry using the specified configuration.
    //
    // Start opens the local telemetry database so that counter increment
    // operations are durably recorded in the local file system.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

        private val encryptionService: EncryptionService,
        private val resolveStateFactory: LocalComponentGraphResolveStateFactory,
        /**
         * Force the [FileSystemAccess] service to be initialized as it initializes important static state.
         */
        @Suppress("unused")
        private val fileSystemAccess: FileSystemAccess,
        private val calculatedValueContainerFactory: CalculatedValueContainerFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. internal/config/identity/plugin/config.go

    		CloseRespFn: closeRespFn,
    		RolePolicy:  rolePolicy,
    		RoleARN:     roleArn,
    	}
    	if err = args.Validate(); err != nil {
    		return args, err
    	}
    	return args, nil
    }
    
    // New - initializes Authorization Management Plugin.
    func New(shutdownCtx context.Context, args Args) *AuthNPlugin {
    	if args.URL == nil || args.URL.Scheme == "" && args.AuthToken == "" {
    		return nil
    	}
    	plugin := AuthNPlugin{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/net/smtp/smtp.go

    // If the server supports the 8BITMIME extension, Mail adds the BODY=8BITMIME
    // parameter. If the server supports the SMTPUTF8 extension, Mail adds the
    // SMTPUTF8 parameter.
    // This initiates a mail transaction and is followed by one or more [Client.Rcpt] calls.
    func (c *Client) Mail(from string) error {
    	if err := validateLine(from); err != nil {
    		return err
    	}
    	if err := c.hello(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    // rawExpr typechecks expression e and initializes x with the expression
    // value or type. If an error occurred, x.mode is set to invalid.
    // If a non-nil target T is given and e is a generic function,
    // T is used to infer the type arguments for e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. src/net/conf.go

    	confVal  = &conf{goos: runtime.GOOS}
    )
    
    // systemConf returns the machine's network configuration.
    func systemConf() *conf {
    	confOnce.Do(initConfVal)
    	return confVal
    }
    
    // initConfVal initializes confVal based on the environment
    // that will not change during program execution.
    func initConfVal() {
    	dnsMode, debugLevel := goDebugNetDNS()
    	confVal.netGo = netGoBuildTag || dnsMode == "go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_test.go

    	"fmt"
    	"hash"
    	"io"
    	"math/rand"
    	"testing"
    )
    
    // First test, so that it can be the one to initialize castagnoliTable.
    func TestCastagnoliRace(t *testing.T) {
    	// The MakeTable(Castagnoli) lazily initializes castagnoliTable,
    	// which races with the switch on tab during Write to check
    	// whether tab == castagnoliTable.
    	ieee := NewIEEE()
    	go MakeTable(Castagnoli)
    	ieee.Write([]byte("hello"))
    }
    
    type test struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. internal/logger/target/http/http.go

    				case v, ok := <-currentBuff:
    					if !ok {
    						break drain
    					}
    					logChBuffers[newTgt.Name()] <- v
    				default:
    					break drain
    				}
    			}
    		}
    	}
    }
    
    // New initializes a new logger target which
    // sends log over http to the specified endpoint
    func New(config Config) (*Target, error) {
    	maxWorkers := maxWorkers
    	if config.BatchSize > 100 {
    		maxWorkers = maxWorkersWithBatchEvents
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top