Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,422 for examine (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    		g = cfgs.FuncLit(node)
    	}
    	if sig == nil {
    		return // missing type information
    	}
    
    	// Print CFG.
    	if debug {
    		fmt.Println(g.Format(pass.Fset))
    	}
    
    	// Examine the CFG for each variable in turn.
    	// (It would be more efficient to analyze all cancelvars in a
    	// single pass over the AST, but seldom is there more than one.)
    	for v, stmt := range cancelvars {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. ci/official/README.md

    ci/official/wheel.sh
    
    # Advanced: Select specific build/test targets with "any.sh".
    # TF_ANY_TARGETS=":your/target" TF_ANY_MODE="test" ci/official/any.sh
    
    # Afterwards: Examine the results, which will include: The bazel cache,
    # generated artifacts like .whl files, and "script.log", from the script.
    # Note that files created under Docker will be owned by "root".
    ls build_output
    ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top