Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 228 for someone (0.23 sec)

  1. src/cmd/compile/internal/ssa/deadstore.go

    		// Since we're walking backwards, writes to a shadowed region are useless,
    		// as they will be immediately overwritten.
    		shadowed.clear()
    		v := last
    
    	walkloop:
    		if loadUse.contains(v.ID) {
    			// Someone might be reading this memory state.
    			// Clear all shadowed addresses.
    			shadowed.clear()
    		}
    		if v.Op == OpStore || v.Op == OpZero {
    			ptr := v.Args[0]
    			var off int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    Either because they are actually published as a whole (when one of the members of the platform is published, all other modules are also published with the same version), or because someone tested the modules and indicates that they work well together (typically, the Spring Platform).
    
    == Aligning versions natively with Gradle
    
    Gradle natively supports alignment of modules produced by Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/ephemeral/controller.go

    			}
    			ec.queue.Add(key)
    			break
    		}
    	}
    }
    
    func (ec *ephemeralController) onPVCDelete(obj interface{}) {
    	pvc, ok := obj.(*v1.PersistentVolumeClaim)
    	if !ok {
    		return
    	}
    
    	// Someone deleted a PVC, either intentionally or
    	// accidentally. If there is a pod referencing it because of
    	// an ephemeral volume, then we should re-create the PVC.
    	// The common indexer does some prefiltering for us by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/serviceaccount/jwt.go

    // pick the correct key for verification when the identity party advertises
    // multiple keys.
    //
    // Making the derivation non-reversible makes it impossible for someone to
    // accidentally obtain the real key from the key ID and use it for token
    // validation.
    func keyIDFromPublicKey(publicKey interface{}) (string, error) {
    	publicKeyDERBytes, err := x509.MarshalPKIXPublicKey(publicKey)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/handling-errors.md

    # Handling Errors
    
    There are many situations in which you need to notify an error to a client that is using your API.
    
    This client could be a browser with a frontend, a code from someone else, an IoT device, etc.
    
    You could need to tell the client that:
    
    * The client doesn't have enough privileges for that operation.
    * The client doesn't have access to that resource.
    * The item the client was trying to access doesn't exist.
    * etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				continue
    			}
    			if err := check.Check(r); err != nil {
    				slis.ObserveHealthcheck(context.Background(), check.Name(), name, slis.Error)
    				// don't include the error since this endpoint is public.  If someone wants more detail
    				// they should have explicit permission to the detailed checks.
    				fmt.Fprintf(&individualCheckOutput, "[-]%s failed: reason withheld\n", check.Name())
    				// but we do want detailed information for our log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/maven/conf/settings.xml

         |   <configuration>
         |     <tomcatLocation>${tomcatPath}</tomcatLocation>
         |   </configuration>
         | </plugin>
         | ...
         |
         | NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to
         |       anything, you could just leave off the <value/> inside the activation-property.
         |
        <profile>
          <id>env-dev</id>
    
          <activation>
            <property>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    buildLogicInputHasChanged(valueSource)
                } else {
                    null
                }
            }.getOrMapFailure { failure ->
                // This can only happen if someone ignored configuration cache problems and still stored the entry.
                // We're invalidating the cache to save the user a manual "rm -rf .gradle/configuration-cache", as there is no way out.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/internal/godebug/godebug.go

    	if v, ok := cache.Load(name); ok {
    		return v.(*setting)
    	}
    	s := new(setting)
    	s.info = godebugs.Lookup(name)
    	s.value.Store(&empty)
    	if v, loaded := cache.LoadOrStore(name, s); loaded {
    		// Lost race: someone else created it. Use theirs.
    		return v.(*setting)
    	}
    
    	return s
    }
    
    // setUpdate is provided by package runtime.
    // It calls update(def, env), where def is the default GODEBUG setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/crypto/ed25519/ed25519_test.go

    		t.Fatalf("error reading test data: %s", err)
    	}
    }
    
    func TestMalleability(t *testing.T) {
    	// https://tools.ietf.org/html/rfc8032#section-5.1.7 adds an additional test
    	// that s be in [0, order). This prevents someone from adding a multiple of
    	// order to s and obtaining a second valid signature for the same message.
    	msg := []byte{0x54, 0x65, 0x73, 0x74}
    	sig := []byte{
    		0x7c, 0x38, 0xe0, 0x26, 0xf2, 0x9e, 0x14, 0xaa, 0xbd, 0x05, 0x9a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top