Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for Off (0.13 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	// Write args to the stack
    	off := base.Ctxt.Arch.FixedFrameSize
    	var callArgs []*ssa.Value
    	var callArgTypes []*types.Type
    
    	for _, arg := range args {
    		t := arg.Type
    		off = types.RoundUp(off, t.Alignment())
    		size := t.Size()
    		callArgs = append(callArgs, arg)
    		callArgTypes = append(callArgTypes, t)
    		off += size
    	}
    	off = types.RoundUp(off, int64(types.RegSize))
    
    	// Issue call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. docs/site-replication/run-replication-with-checksum-header.sh

    	local ascii_value=$((96 + num))
    	# Convert the ASCII value to the character using printf
    	printf "\\$(printf '%03o' "$ascii_value")"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    
    # Download AWS CLI
    echo -n "Download and install AWS CLI"
    rm -rf /usr/local/aws-cli || sudo rm -rf /usr/local/aws-cli
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // Usage:
    //
    //	go telemetry [off|local|on]
    //
    // Telemetry is used to manage Go telemetry data and settings.
    //
    // Telemetry can be in one of three modes: off, local, or on.
    //
    // When telemetry is in local mode, counter data is written to the local file
    // system, but will not be uploaded to remote servers.
    //
    // When telemetry is off, local counter data is neither collected nor uploaded.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. cmd/batch-job-common-types.go

    	}
    
    	return nil
    }
    
    //   # snowball based archive transfer is by default enabled when source
    //   # is local and target is remote which is also minio.
    //   snowball:
    //     disable: false # optionally turn-off snowball archive transfer
    //     batch: 100 # upto this many objects per archive
    //     inmemory: true # indicates if the archive must be staged locally or in-memory
    //     compress: true # S2/Snappy compressed archive
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. cmd/bucket-lifecycle.go

    		return nil, fmt.Errorf("transition storage class not configured: %w", err)
    	}
    
    	fn, off, length, err := NewGetObjectReader(rs, oi, opts, h)
    	if err != nil {
    		return nil, ErrorRespToObjectError(err, bucket, object)
    	}
    	gopts := WarmBackendGetOpts{}
    
    	// get correct offsets for object
    	if off >= 0 && length >= 0 {
    		gopts.startOffset = off
    		gopts.length = length
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. cmd/signature-v4-utils.go

    			val, ok = reqQueries[header]
    		}
    		if ok {
    			extractedSignedHeaders[http.CanonicalHeaderKey(header)] = val
    			continue
    		}
    		switch header {
    		case "expect":
    			// Golang http server strips off 'Expect' header, if the
    			// client sent this as part of signed headers we need to
    			// handle otherwise we would see a signature mismatch.
    			// `aws-cli` sets this as part of signed headers.
    			//
    			// According to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

                }
    
                parameters.add(parameter);
            }
    
            mojo.setParameters(parameters);
    
            // TODO this should not need to be handed off...
    
            // ----------------------------------------------------------------------
            // Requirements
            // ----------------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		},
    		{
    			name:      "Queue queues pod to backoffQ if Pod is backing off",
    			podInfo:   &framework.QueuedPodInfo{PodInfo: mustNewPodInfo(p), UnschedulablePlugins: sets.New("foo")},
    			hint:      queueHintReturnQueue,
    			expectedQ: backoffQ,
    		},
    		{
    			name:      "Queue queues pod to activeQ if Pod is not backing off",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. cmd/iam-etcd-store.go

    	for _, kv := range kvs {
    		user := extractPathPrefixAndSuffix(string(kv.Key), prefix, path.Base(string(kv.Key)))
    		users.Add(user)
    	}
    	return users
    }
    
    // Extract path string by stripping off the `prefix` value and the suffix,
    // value, usually in the following form.
    //
    //	s := "config/iam/users/foo/config.json"
    //	prefix := "config/iam/users/"
    //	suffix := "config.json"
    //	result is foo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    See 'go help env' for details.
    
    General-purpose environment variables:
    
    	GO111MODULE
    		Controls whether the go command runs in module-aware mode or GOPATH mode.
    		May be "off", "on", or "auto".
    		See https://golang.org/ref/mod#mod-commands.
    	GCCGO
    		The gccgo command to run for 'go build -compiler=gccgo'.
    	GOARCH
    		The architecture, or processor, for which to compile code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top