Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for pirates (0.14 sec)

  1. src/internal/coverage/pods/pods.go

    			dirIndices = append(dirIndices, k)
    		}
    	}
    	return collectPodsImpl(files, dirIndices, warn), nil
    }
    
    // CollectPodsFromFiles functions the same as "CollectPods" but
    // operates on an explicit list of files instead of a directory.
    func CollectPodsFromFiles(files []string, warn bool) []Pod {
    	return collectPodsImpl(files, nil, warn)
    }
    
    type fileWithAnnotations struct {
    	file   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/internal/trace/mud.go

    			d.trackSum = sum
    			return
    		}
    		sum = newSum
    	}
    	d.trackBucket = len(d.hist)
    	d.trackSum = sum
    }
    
    // approxInvCumulativeSum is like invCumulativeSum, but specifically
    // operates on the tracked mass and returns an upper and lower bound
    // approximation of the inverse cumulative sum.
    //
    // The true inverse cumulative sum will be in the range [lower, upper).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. docs/ftp/README.md

      - Built-in IDP users and their respective service accounts
      - LDAP/AD users and their respective service accounts
      - OpenID/OIDC service accounts
    
    - On versioned buckets, FTP/SFTP only operates on latest objects, if you need to retrieve
      an older version you must use an `S3 API client` such as [`mc`](https://github.com/minio/mc).
    
    - All features currently used by your buckets will work as is without any changes
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/schema-extra-example.md

    (`Query()`, `Body()`, etc.) esses exemplos não são adicionados ao JSON Schema que descreve esses dados (nem mesmo para versão própria do OpenAPI do JSON Schema), eles são adicionados diretamente à declaração da *operação de rota* no OpenAPI (fora das partes do OpenAPI que usam o JSON Schema).
    
    Para `Path()`, `Query()`, `Header()`, e `Cookie()`, o `example` e `examples` são adicionados a <a href="https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#parameter-object" class="external-link"...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/tcp.go

    // limitations under the License.
    
    package forwarder
    
    import (
    	"bufio"
    	"bytes"
    	"context"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"strings"
    
    	proxyproto "github.com/pires/go-proxyproto"
    
    	"istio.io/istio/pkg/hbone"
    	"istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    var _ protocol = &tcpProtocol{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GroovyInteroperability.kt

     *
     * @see [KotlinClosure1]
     */
    fun <T> Any.closureOf(action: T.() -> Unit): Closure<Any?> =
        KotlinClosure1(action, this, this)
    
    
    /**
     * Adapts a Kotlin function to a Groovy [Closure] that operates on the
     * configured Closure delegate.
     *
     * @param T the expected type of the delegate argument to the closure.
     * @param action the function to be adapted.
     *
     * @see [KotlinClosure1]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. src/internal/trace/reader.go

    		}
    		return &Reader{
    			go121Events: convertOldFormat(tr),
    		}, nil
    	case version.Go122, version.Go123:
    		return &Reader{
    			r: br,
    			order: ordering{
    				mStates:     make(map[ThreadID]*mState),
    				pStates:     make(map[ProcID]*pState),
    				gStates:     make(map[GoID]*gState),
    				activeTasks: make(map[TaskID]taskState),
    			},
    			// Don't emit a sync event when we first go to emit events.
    			emittedSync: true,
    		}, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/go/doc/comment/text.go

    	// punctuation character, even if the next word would fit in
    	// those spaces.
    	//
    	// We care about ending in punctuation characters because
    	// it makes the text easier to skim if not too many sentences
    	// or phrases begin with a single word on the previous line.
    
    	// A score is the score (also called weight) for a given line.
    	// add and cmp add and compare scores.
    	type score struct {
    		hi int64
    		lo int64
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. src/cmd/gofmt/rewrite.go

    	callExprType  = reflect.TypeOf((*ast.CallExpr)(nil))
    	scopePtrType  = reflect.TypeOf((*ast.Scope)(nil))
    )
    
    // apply replaces each AST field x in val with f(x), returning val.
    // To avoid extra conversions, f operates on the reflect.Value form.
    func apply(f func(reflect.Value) reflect.Value, val reflect.Value) reflect.Value {
    	if !val.IsValid() {
    		return reflect.Value{}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    
    [[sec:embedding_features]]
    === Tooling API Features
    
    A fundamental characteristic of the Tooling API is that it operates in a version independent way.
    This means that you can use the same API to work with builds that use different versions of Gradle, including versions that are newer or older than the version of the Tooling API that you are using.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top