Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,120 for promises (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    				continue
    			}
    			p.Blocks[j] = b
    			j++
    		}
    		p.Blocks = p.Blocks[:j]
    	}
    	// Generate a sorted slice.
    	profiles := make([]*Profile, 0, len(files))
    	for _, profile := range files {
    		profiles = append(profiles, profile)
    	}
    	sort.Sort(byFileName(profiles))
    	return profiles, nil
    }
    
    // parseLine parses a line from a coverage file.
    // It is equivalent to the regex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  2. manifests/charts/UPDATING-CHARTS.md

    The charts in the `manifests` directory are used in istioctl to generate an installation manifest.
    
    If `values.yaml` is changed, be sure to update corresponding values changes in [../profiles/default.yaml](../profiles/default.yaml)
    
    ## Step 3. Update istioctl schema
    
    Istioctl uses a [schema](../../operator/pkg/apis/istio/v1alpha1/values_types.proto) to validate the values. Any changes to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[base_plugin]]
    = The Base Plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Gradle offers you many better ways to avoid the extensive use of profiles that Maven often requires, for example by configuring multiple tasks that are variants of one another.
    See the `publish__PubName__PublicationTo__RepoName__Repository` tasks created by the <<publishing_maven#publishing_maven:tasks,Maven Publish Plugin>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                }
            };
        }
    
        @Provides
        static RepositorySystemSupplier newRepositorySystemSupplier() {
            return new RepositorySystemSupplier();
        }
    
        @Provides
        static RepositorySystem newRepositorySystem(RepositorySystemSupplier repositorySystemSupplier) {
            return repositorySystemSupplier.getRepositorySystem();
        }
    
        @Provides
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. api/maven-api-settings/src/main/mdo/settings.mdo

         */
        public synchronized Proxy getActiveProxy() {
            if (activeProxy == null) {
                java.util.List<Proxy> proxies = getProxies();
                if (proxies != null && !proxies.isEmpty()) {
                    for (Proxy proxy : proxies) {
                        if (proxy.isActive()) {
                            activeProxy = proxy;
                            break;
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. src/cmd/covdata/merge.go

    func makeMergeOp() covOperation {
    	outdirflag = flag.String("o", "", "Output directory to write")
    	pcombineflag = flag.Bool("pcombine", false, "Combine profiles derived from distinct program executables")
    	m := &mstate{
    		mm: newMetaMerge(),
    	}
    	return m
    }
    
    // mstate encapsulates state and provides methods for implementing the
    // merge operation. This type implements the CovDataVisitor interface,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/sumdb.go

    // Determining the URL requires sending network traffic to proxies,
    // so this work is delayed until we need to download something from
    // the database. If everything we need is in the local cache and
    // c.ReadRemote is never called, we will never do this work.
    func (c *dbClient) initBase() {
    	if c.base != nil {
    		return
    	}
    
    	// Try proxies in turn until we find out how to connect to this database.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. operator/cmd/mesh/uninstall.go

    			needConfirmation = true
    			message += fmt.Sprintf("There are still %d proxies pointing to the control plane revision %s\n", len(pids), rev)
    			// just print the count only if there is a large list of proxies
    			if len(pids) <= 30 {
    				message += fmt.Sprintf("%s\n", strings.Join(pids, "\n"))
    			}
    			message += "If you proceed with the uninstall, these proxies will become detached from any control plane" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/net/http/doc.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Package http provides HTTP client and server implementations.
    
    [Get], [Head], [Post], and [PostForm] make HTTP (or HTTPS) requests:
    
    	resp, err := http.Get("http://example.com/")
    	...
    	resp, err := http.Post("http://example.com/upload", "image/jpeg", &buf)
    	...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top