Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 368 for ignoreMe (0.12 sec)

  1. src/internal/trace/testdata/testprog/annotations-stress.go

    // Copyright 2023 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.
    
    // Tests user tasks, regions, and logging.
    
    //go:build ignore
    
    package main
    
    import (
    	"context"
    	"fmt"
    	"log"
    	"os"
    	"runtime/trace"
    	"time"
    )
    
    func main() {
    	baseCtx := context.Background()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                    inFiles = files(inFiles, files2).filter { f -> f.name.endsWith('.txt') }
                }
            """
            file('a.txt').text = 'a'
            file('a.bin').text = 'ignore-me'
            file('b.txt').text = 'b'
            file('b.bin').text = 'ignore-me'
    
            when:
            run("merge")
    
            then:
            outputContains("result = [a.txt, b.txt]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. pkg/kubelet/certificate/kubelet_test.go

    		{
    			name:         "empty",
    			addresses:    nil,
    			wantDNSNames: nil,
    			wantIPs:      nil,
    		},
    		{
    			name:         "ignore empty values",
    			addresses:    []v1.NodeAddress{{Type: v1.NodeHostName, Address: ""}},
    			wantDNSNames: nil,
    			wantIPs:      nil,
    		},
    		{
    			name: "ignore invalid IPs",
    			addresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "1.2"},
    				{Type: v1.NodeExternalIP, Address: "3.4"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

        llvm::cl::Optional, llvm::cl::init("serving_default"));
    
    // NOLINTNEXTLINE
    opt<std::string> tag_names(
        "tags",
        llvm::cl::desc("Comma-separated list of tags for loading SavedModel. "
                       "Ignored for MLIR input"),
        llvm::cl::Optional, llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e",
        llvm::cl::desc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/encoding/csv/reader.go

    //
    //	field1,field2,field3
    //
    // White space is considered part of a field.
    //
    // Carriage returns before newline characters are silently removed.
    //
    // Blank lines are ignored. A line with only whitespace characters (excluding
    // the ending newline character) is not considered a blank line.
    //
    // Fields which start and stop with the quote character " are called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/net/url/url.go

    // base or reference. If ref is an absolute URL, then ResolveReference
    // ignores base and returns a copy of ref.
    func (u *URL) ResolveReference(ref *URL) *URL {
    	url := *ref
    	if ref.Scheme == "" {
    		url.Scheme = u.Scheme
    	}
    	if ref.Scheme != "" || ref.Host != "" || ref.User != nil {
    		// The "absoluteURI" or "net_path" cases.
    		// We can ignore the error from setPath since we know we provided a
    		// validly-escaped path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  7. src/go/types/check_test.go

    	}
    	return x - y
    }
    
    // parseFlags parses flags from the first line of the given source if the line
    // starts with "//" (line comment) followed by "-" (possibly with spaces
    // between). Otherwise the line is ignored.
    func parseFlags(src []byte, flags *flag.FlagSet) error {
    	// we must have a line comment that starts with a "-"
    	const prefix = "//"
    	if !bytes.HasPrefix(src, []byte(prefix)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

                            problems.add(new ModelProblemCollectorRequest(
                                            ModelProblem.Severity.WARNING, ModelProblem.Version.V40)
                                    .setMessage("Ignored POM import for: " + toString(dependency) + " as already imported "
                                            + toString(present) + ". Add the conflicting managed dependency directly "
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    	// Extensions contains raw X.509 extensions. When parsing certificates,
    	// this can be used to extract non-critical extensions that are not
    	// parsed by this package. When marshaling certificates, the Extensions
    	// field is ignored, see ExtraExtensions.
    	Extensions []pkix.Extension
    
    	// ExtraExtensions contains extensions to be copied, raw, into any
    	// marshaled certificates. Values override any extensions that would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/cleanup.sh

    kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo.yaml" > "${OUTPUT}" 2>&1
    ret=$?
    function cleanup() {
      rm -f "${OUTPUT}"
    }
    
    trap cleanup EXIT
    
    if [[ ${ret} -eq 0 ]];then
      cat "${OUTPUT}"
    else
      # ignore NotFound errors
      OUT2=$(grep -v NotFound "${OUTPUT}")
      if [[ -n ${OUT2} ]];then
        cat "${OUTPUT}"
        exit ${ret}
      fi
    fi
    
    # wait for 30 sec for bookinfo to clean up
    sleep 30
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top