Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 177 for auditing (0.24 sec)

  1. src/image/png/testdata/pngsuite/README

    converted it to the 8-bit paletted image with alpha values in tRNS chunk.
    
    The *.sng files in this directory were generated from the *.png files by the
    sng command-line tool and some hand editing. The files basn0g0{1,2,4}.sng and
    ftbbn0g0{1,2,4}.sng were actually generated by first converting the PNG to a
    bitdepth of 8 and then running sng on them. basn4a08.sng was generated from a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 02:10:13 UTC 2016
    - 1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue44378.go

    // license that can be found in the LICENSE file.
    
    // This test case caused a panic in the compiler's DWARF gen code.
    
    // Note to future maintainers of this code:
    //
    //    ** Do NOT run gofmt when editing this file **
    //
    // In order for the buggy behavior to be triggered in the compiler,
    // we need to have a the function of interest all on one gigantic line.
    
    package a
    
    type O interface{}
    type IO int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 21 02:25:26 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	return nil
    }
    
    func autoConvert_v1_Event_To_audit_Event(in *Event, out *audit.Event, s conversion.Scope) error {
    	out.Level = audit.Level(in.Level)
    	out.AuditID = types.UID(in.AuditID)
    	out.Stage = audit.Stage(in.Stage)
    	out.RequestURI = in.RequestURI
    	out.Verb = in.Verb
    	out.User = in.User
    	out.ImpersonatedUser = (*authenticationv1.UserInfo)(unsafe.Pointer(in.ImpersonatedUser))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 06 19:08:27 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_AUDITON                  = 446 // { int auditon(int cmd, void *data, u_int length); }
    	SYS_GETAUID                  = 447 // { int getauid(uid_t *auid); }
    	SYS_SETAUID                  = 448 // { int setauid(uid_t *auid); }
    	SYS_GETAUDIT                 = 449 // { int getaudit(struct auditinfo *auditinfo); }
    	SYS_SETAUDIT                 = 450 // { int setaudit(struct auditinfo *auditinfo); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_AUDITON                  = 446 // { int auditon(int cmd, void *data, u_int length); }
    	SYS_GETAUID                  = 447 // { int getauid(uid_t *auid); }
    	SYS_SETAUID                  = 448 // { int setauid(uid_t *auid); }
    	SYS_GETAUDIT                 = 449 // { int getaudit(struct auditinfo *auditinfo); }
    	SYS_SETAUDIT                 = 450 // { int setaudit(struct auditinfo *auditinfo); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  8. docs/logging/README.md

    ```
    mc admin config set myminio/ audit_kafka:target1 brokers=localhost:29092 topic=auditlog
    mc admin service restart myminio/
    ```
    
    On another terminal assuming you have `kafkacat` installed
    
    ```
    kafkacat -b localhost:29092 -t auditlog  -C
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/audit/format.go

    	}
    
    	return fmt.Sprintf("%s AUDIT: id=%q stage=%q ip=%q method=%q user=%q groups=%q as=%q asgroups=%q user-agent=%q namespace=%q uri=%q response=\"%s\"",
    		ev.RequestReceivedTimestamp.Format(time.RFC3339Nano), ev.AuditID, ev.Stage, ip, ev.Verb, username, groups, asuser, asgroups, ev.UserAgent, namespace, ev.RequestURI, response)
    }
    
    func auditStringSlice(inList []string) string {
    	quotedElements := make([]string, len(inList))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 25 12:23:51 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. .github/actions/notify-translations/app/main.py

    import sys
    import time
    from pathlib import Path
    from typing import Any, Dict, List, Union, cast
    
    import httpx
    from github import Github
    from pydantic import BaseModel, BaseSettings, SecretStr
    
    awaiting_label = "awaiting-review"
    lang_all_label = "lang-all"
    approved_label = "approved-2"
    translations_path = Path(__file__).parent / "translations.yml"
    
    github_graphql_url = "https://api.github.com/graphql"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top