Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,408 for noteFn (0.16 sec)

  1. docs/en/docs/how-to/async-sql-encode-databases.md

    !!! note
        Notice that as we communicate with the database using `await`, the *path operation function* is declared with `async`.
    
    ### About `{**note.dict(), "id": last_record_id}`
    
    `note` is a Pydantic `Note` object.
    
    `note.dict()` returns a `dict` with its data, something like:
    
    ```Python
    {
        "text": "Some note",
        "completed": False,
    }
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/legacy/source/kube/origin.go

    func (o *Origin) FriendlyName() string {
    	parts := strings.Split(o.FullName.String(), "/")
    	if len(parts) == 2 {
    		// The istioctl convention is <type> [<namespace>/]<name>.
    		// This code has no notion of a default and always shows the namespace.
    		return fmt.Sprintf("%s %s/%s", o.Type.Kind, parts[0], parts[1])
    	}
    	return fmt.Sprintf("%s %s", o.Type.Kind, o.FullName.String())
    }
    
    func (o *Origin) Comparator() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/plugin-execution-isolation.apt

     plexus application; The <<<plexus.core.maven>>> realm contains all of the
     resources required to run Maven. Each subsequent plugin realm contains the
     JAR plugin as well as its dependencies. The realms noted above are setup
     in a hierarchical structure where the resources in the parent realms are
     available but the <<realm is searched first before a search is made in
     the parent realm>>.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 03 09:12:28 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_pkgall_imports.txt

    -- $GOPATH/src/example.com/cov/go.mod --
    module example.com/cov
    
    -- $GOPATH/src/example.com/cov/notest/notest.go --
    package notest
    
    func Foo() {}
    
    -- $GOPATH/src/example.com/cov/onlytest/onlytest_test.go --
    package onlytest_test
    
    import (
    	"testing"
    
    	"example.com/cov/notest"
    )
    
    func TestFoo(t *testing.T) {
    	notest.Foo()
    }
    
    -- $GOPATH/src/example.com/cov/withtest/withtest.go --
    package withtest
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 18:14:47 UTC 2021
    - 870 bytes
    - Viewed (0)
  5. misc/linkcheck/linkcheck.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The linkcheck command finds missing links in the godoc website.
    // It crawls a URL recursively and notes URLs and URL fragments
    // that it's seen and prints a report of missing links at the end.
    package main
    
    import (
    	"errors"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"net/http"
    	"os"
    	"regexp"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  6. releasenotes/README.md

    # Istio Release Notes
    
    This directory contains the release notes, upgrade notes, and security notes for Istio.
    Notes should be created as part of the pull request for any user facing changes. Before
    a release, the release notes utility will be run in order to generate a release notes file
    which will be reviewed by the release managers and documentation team.
    
    ## When to Add Release Notes
    
    Release notes should be added for any user facing changes. These include:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java

                task.getDestinationFile().convention(extension.getStagingRoot().file("release-notes/raw.html"));
            });
    
            TaskProvider<DecorateReleaseNotes> releaseNotesPostProcess = tasks.register("releaseNotes", DecorateReleaseNotes.class, task -> {
                task.setGroup("release notes");
                task.setDescription("Transforms generated release notes.");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 10 11:32:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/intstr/instr_fuzz.go

    //go:build !notest
    // +build !notest
    
    /*
    Copyright 2020 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_fuzz.go

    //go:build !notest
    // +build !notest
    
    /*
    Copyright 2020 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotes.java

    public abstract class ReleaseNotes {
        /**
         * The source markdown file for the release notes.
         */
        public abstract RegularFileProperty getMarkdownFile();
    
        /**
         * The base CSS file used by all documentation.
         */
        public abstract RegularFileProperty getBaseCssFile();
    
        /**
         * The release notes specific CSS file
         */
        public abstract RegularFileProperty getReleaseNotesCssFile();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top