Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,729 for ninit (0.08 sec)

  1. src/runtime/os_darwin.go

    // Called on the new thread, cannot allocate memory.
    func minit() {
    	// iOS does not support alternate signal stack.
    	// The signal handler handles it directly.
    	if !(GOOS == "ios" && GOARCH == "arm64") {
    		minitSignalStack()
    	}
    	minitSignalMask()
    	getg().m.procid = uint64(pthread_self())
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/multi-init.yaml.injected

          initContainers:
          - command:
            - sh
            - -c
            - "true"
            image: busybox
            name: init-one
            resources: {}
          - command:
            - sh
            - -c
            - "true"
            image: busybox
            name: init-two
            resources: {}
          - args:
            - istio-iptables
            - -p
            - "15001"
            - -z
            - "15006"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. .github/workflows/codeql-analysis.init.gradle

    Sterling Greene <******@****.***> 1602308214 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 10 05:36:54 UTC 2020
    - 745 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/initScripts/customLogger/kotlin/customLogger.init.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 504 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/complit.go

    					// are ordered correctly here. See issue #52673.
    					orderBlock(&sinit, map[string][]*ir.Name{})
    					typecheck.Stmts(sinit)
    					walkStmtList(sinit)
    				}
    				init.Append(sinit...)
    				continue
    			}
    
    		case ir.OARRAYLIT, ir.OSTRUCTLIT:
    			value := value.(*ir.CompLitExpr)
    			fixedlit(ctxt, kind, value, a, init)
    			continue
    		}
    
    		islit := ir.IsConstNode(value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/select.go

    	r.Lhs = []ir.Node{chosen, recvOK}
    	fn := typecheck.LookupRuntime("selectgo")
    	var fnInit ir.Nodes
    	r.Rhs = []ir.Node{mkcall1(fn, fn.Type().ResultsTuple(), &fnInit, bytePtrToIndex(selv, 0), bytePtrToIndex(order, 0), pc0, ir.NewInt(base.Pos, int64(nsends)), ir.NewInt(base.Pos, int64(nrecvs)), ir.NewBool(base.Pos, dflt == nil))}
    	init = append(init, fnInit...)
    	init = append(init, typecheck.Stmt(r))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. docs/en/docs/js/custom.js

                        noInit: true,
                        lineDelay: 500
                    });
                    termynals.push(termynal);
                });
        }
    
        function loadVisibleTermynals() {
            termynals = termynals.filter(termynal => {
                if (termynal.container.getBoundingClientRect().top - innerHeight <= 0) {
                    termynal.init();
                    return false;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/adminlte.min.js

    eck:function(t){return t},onUnCheck:function(t){return t}},a=function(){function e(t,e){this._config=e,this._element=t,this._init()}var i=e.prototype;return i.toggle=function(e){e.parents("li").toggleClass(s),t(e).prop("checked")?this.check(e):this.unCheck(t(e))},i.check=function(t){this._config.onCheck.call(t)},i.unCheck=function(t){this._config.onUnCheck.call(t)},i._init=function(){var e=this;t(n).find("input:checkbox:checked").parents("li").toggleClass(s),t(n).on("change","input:checkbox",(fu...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 23.7K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/resources/META-INF/gradle-plugins/org.gradle.build-init.properties

    Tom Tresansky <******@****.***> 1694705555 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 66 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    == Applying plugins
    
    Plugins can be applied to init scripts like a Gradle build script or a Gradle settings file.
    
    Using plugins in init scripts:
    
    ====
    include::sample[dir="snippets/initScripts/plugins/kotlin",files="init.gradle.kts[tags=init-script-plugin];build.gradle.kts[tag=show-repos-task]"]
    include::sample[dir="snippets/initScripts/plugins/groovy",files="init.gradle[tags=init-script-plugin];build.gradle[tag=show-repos-task]"]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top