Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 160 for mprotect (0.49 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	loaderSymbols   []*xcoffLoaderSymbol // symbols inside .loader symbol table
    	loaderReloc     []*xcoffLoaderReloc  // Reloc that must be made inside loader
    	sync.Mutex                           // currently protect loaderReloc
    }
    
    // Var used by XCOFF Generation algorithms
    var (
    	xfile xcoffFile
    )
    
    // xcoffStringTable is a XCOFF string table.
    type xcoffStringTable struct {
    	strings    []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    			}
    
    			if explicitNonceLen > 0 {
    				c.SetIV(payload[:explicitNonceLen])
    				payload = payload[explicitNonceLen:]
    			}
    			c.CryptBlocks(payload, payload)
    
    			// In a limited attempt to protect against CBC padding oracles like
    			// Lucky13, the data past paddingLen (which is secret) is passed to
    			// the MAC function as extra data, to be fed into the HMAC after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsScheduledJobCA.java

    /*
     * Copyright 2012-2024 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsDataConfigCA.java

    /*
     * Copyright 2012-2024 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	knownNodeSet map[string]*v1.Node
    	// per Node map storing last observed health together with a local time when it was observed.
    	nodeHealthMap *nodeHealthMap
    
    	// evictorLock protects zonePodEvictor and zoneNoExecuteTainter.
    	evictorLock sync.Mutex
    	// workers that are responsible for tainting nodes.
    	zoneNoExecuteTainter map[string]*scheduler.RateLimitedTimedQueue
    
    	nodesToRetry sync.Map
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/math/big/float_test.go

    				case 3:
    					op = "/"
    					z = x / y
    					f = (*Float).Quo
    				default:
    					panic("unreachable")
    				}
    				var errnan bool // set if execution of f panicked with ErrNaN
    				// protect execution of f
    				func() {
    					defer func() {
    						if p := recover(); p != nil {
    							_ = p.(ErrNaN) // re-panic if not ErrNaN
    							errnan = true
    						}
    					}()
    					f(got, xx, yy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/proxier.go

    	// current is state after applying all of those.
    	endpointsChanges  *proxy.EndpointsChangeTracker
    	serviceChanges    *proxy.ServiceChangeTracker
    	endPointsRefCount endPointsReferenceCountMap
    	mu                sync.Mutex // protects the following fields
    	svcPortMap        proxy.ServicePortMap
    	endpointsMap      proxy.EndpointsMap
    	// endpointSlicesSynced and servicesSynced are set to true when corresponding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    	// current is state after applying all of those.
    	endpointsChanges *proxy.EndpointsChangeTracker
    	serviceChanges   *proxy.ServiceChangeTracker
    
    	mu           sync.Mutex // protects the following fields
    	svcPortMap   proxy.ServicePortMap
    	endpointsMap proxy.EndpointsMap
    	nodeLabels   map[string]string
    	// endpointSlicesSynced, and servicesSynced are set to true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsLabelTypeCQ.java

    /*
     * Copyright 2012-2024 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    	// and double with each successful iteration in a kind of "slow start".
    	// This handles attempts to start large numbers of pods that would
    	// likely all fail with the same error. For example a project with a
    	// low quota that attempts to create a large number of pods will be
    	// prevented from spamming the API service with the pod create requests
    	// after one of its pods fails.  Conveniently, this also prevents the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top