Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for auditing (0.15 sec)

  1. src/cmd/compile/internal/ir/visit.go

    //
    // EditChildren allows constructing general editing passes of the IR graph.
    // The most general usage is:
    //
    //	var edit func(ir.Node) ir.Node
    //	edit = func(x ir.Node) ir.Node {
    //		... processing BEFORE editing children ...
    //		if ... should edit children ... {
    //			EditChildren(x, edit)
    //			... processing AFTER editing children ...
    //		}
    //		... return x ...
    //	}
    //	n = edit(n)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy.go

    	newReq.Host = location.Host
    
    	// If the original request has an audit ID, let's make sure we propagate this
    	// to the aggregated server.
    	if auditID, found := audit.AuditIDFrom(req.Context()); found {
    		newReq.Header.Set(auditinternal.HeaderAuditID, string(auditID))
    	}
    
    	return newReq, cancelFn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/TestExecutionEngineFactory.java

    import org.gradle.internal.vfs.VirtualFileSystem;
    
    import static org.gradle.internal.execution.steps.AfterExecutionOutputFilter.NO_FILTER;
    
    /**
     * Note that this is kept as a Java source file as a workaround for IntelliJ editing
     * being very slow with deeply nested constructor calls in Groovy source files.
     */
    public class TestExecutionEngineFactory {
        public static ExecutionEngine createExecutionEngine(
            UniqueId buildId,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    When used for the compilation of Kotlin source sets, e.g. in `buildSrc`, the `kotlin-dsl` plugin provide Kotlin DSL features to source sets and compiles Kotlin code using the Kotlin Gradle Plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_overlay.txt

    go list -overlay overlay.json all
    ! stdout ^carve2$
    stdout ^carve2/nomod$
    # Editing go.mod file fails because overlay is read only
    ! go get -overlay overlay.json rsc.io/quote
    stderr '^go: updates to go.mod needed, but go.mod is part of the overlay specified with -overlay$'
    ! grep rsc.io/quote $WORK/overlay/carve2-nomod-go.mod
    # Editing go.mod file succeeds because we use -modfile to redirect to same file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRepositoryTest.kt

            /**
             * Request accepted into the queue.
             */
            val acceptedRequest = Channel<KotlinBuildScriptModelRequest>(3)
    
            /**
             * Request taken off the queue awaiting for a response.
             */
            val pendingRequest = Channel<KotlinBuildScriptModelRequest>(3)
    
            /**
             * Next response to [KotlinBuildScriptModelRepository.fetch].
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. .github/workflows/stale-issues.yml

      close-issues:
        # Don't do this in forks
        if: github.repository == 'tensorflow/tensorflow'
        runs-on: ubuntu-latest
        permissions:
          issues: write
          pull-requests: write
        steps:
          - name: Awaiting response issues
            uses: actions/stale@6f05e4244c9a0b2ed3401882b05d701dd0a7289b # v7.0.0
            with:
              #Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_edit.txt

    # Test editing go.work files.
    
    go work init m
    cmpenv go.work go.work.want_initial
    
    go work edit -use n
    cmpenv go.work go.work.want_use_n
    
    grep go go.work
    go work edit -go none
    ! grep go go.work
    
    go work edit -go 1.18
    cmp go.work go.work.want_go_118
    
    go work edit -dropuse m
    cmp go.work go.work.want_dropuse_m
    
    go work edit -replace=x.1@v1.3.0=y.1@v1.4.0 -replace='x.1@v1.4.0 = ../z'
    cmp go.work go.work.want_add_replaces
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. doc/README.md

    # Release Notes
    
    The `initial` and `next` subdirectories of this directory are for release notes.
    
    ## For developers
    
    Release notes should be added to `next` by editing existing files or creating
    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authenticator/token/bootstrap/bootstrap.go

    			return nil, false, nil
    		}
    		return nil, false, err
    	}
    
    	if secret.DeletionTimestamp != nil {
    		tokenErrorf(secret, "is deleted and awaiting removal")
    		return nil, false, nil
    	}
    
    	if string(secret.Type) != string(bootstrapapi.SecretTypeBootstrapToken) || secret.Data == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 20:38:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top