Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,546 for examine (0.42 sec)

  1. src/os/error.go

    	// that it historically did, not all errors implementing Unwrap().
    	err = underlyingError(err)
    	if err == target {
    		return true
    	}
    	// To preserve prior behavior, only examine syscall errors.
    	e, ok := err.(syscallErrorType)
    	return ok && e.Is(target)
    }
    
    // underlyingError returns the underlying error for known os error types.
    func underlyingError(err error) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. security/pkg/pki/util/san.go

    // the given PKIX extension set.
    func ExtractSANExtension(exts []pkix.Extension) *pkix.Extension {
    	for _, ext := range exts {
    		if ext.Id.Equal(oidSubjectAlternativeName) {
    			// We don't need to examine other extensions anymore since a certificate
    			// must not include more than one instance of a particular extension. See
    			// https://tools.ietf.org/html/rfc5280#section-4.2.
    			return &ext
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. docs/fr/docs/fastapi-people.md

    ---
    
    Les **Principaux Reviewers** 🕵️ ont examiné le plus grand nombre de demandes Pull Request des autres, assurant la qualité du code, de la documentation, et surtout, des **traductions**.
    
    {% if people %}
    <div class="user-list user-list-center">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/cmd/covdata/tool_test.go

    	lines := runToolOp(t, s, "merge", margs)
    	if len(lines) != 0 {
    		t.Errorf("merge run produced %d lines of unexpected output", len(lines))
    		dumplines(lines)
    	}
    
    	// Dump the files in the merged output dir and examine the result.
    	// We expect to see only the functions in package "dep".
    	dargs := []string{"-i=" + outdir}
    	lines = runToolOp(t, s, "debugdump", dargs)
    	if len(lines) == 0 {
    		t.Fatalf("dump run produced no output")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. hack/boilerplate/boilerplate.py

    )
    
    rootdir = os.path.dirname(__file__) + "/../../"
    rootdir = os.path.abspath(rootdir)
    parser.add_argument("--rootdir", default=rootdir, help="root directory to examine")
    
    default_boilerplate_dir = os.path.join(rootdir, "hack/boilerplate")
    parser.add_argument("--boilerplate-dir", default=default_boilerplate_dir)
    
    parser.add_argument(
        "-v",
        "--verbose",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/DomainObjectCollection.java

     * thread; this includes direct invocations, passing the collection to a method that might perform invocations, and using an existing iterator to examine the collection.
     * </p>
     *
     * @param <T> The type of objects in this collection.
     */
    public interface DomainObjectCollection<T> extends Collection<T> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 31 01:48:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  7. istioctl/pkg/checkinject/checkinject.go

    		Long: `
    Checks associated resources of the given resource, and running webhooks to examine whether the pod can be or will be injected or not.`,
    		Example: `  # Check the injection status of a pod
      istioctl experimental check-inject details-v1-fcff6c49c-kqnfk.test
    	
      # Check the injection status of a pod under a deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/testsupport.go

    		}
    	}
    	return nil
    }
    
    // Snapshot returns a snapshot of coverage percentage at a moment of
    // time within a running test, so as to support the testing.Coverage()
    // function. This version doesn't examine coverage meta-data, so the
    // result it returns will be less accurate (more "slop") due to the
    // fact that we don't look at the meta data to see how many statements
    // are associated with each counter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ConfigurationReportModelFactory.java

            return new ReportCapability(Objects.toString(project.getGroup()), project.getName(), Objects.toString(project.getVersion()), true);
        }
    
        /**
         * This class can examine a project to determine which {@link Attribute}s in its schema have {@link org.gradle.api.internal.attributes.CompatibilityRule CompatibilityRule}s or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/README.md

    # Analyzers
    
    The purpose of analyzers is to examine Istio configuration for potential problems that should be surfaced back to the user. An analyzer takes as input a Context object that contains methods to inspect the configuration snapshot being analyzed, as well as methods for reporting any issues discovered.
    
    ## Writing Analyzers
    
    ### 1. Create the code
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top