Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for someConf (0.16 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		}
    	}
    	localFileName := filepath.Join(u.dir.LocalDir(), "local."+expiryDate+".json")
    	uploadFileName := filepath.Join(u.dir.LocalDir(), expiryDate+".json")
    
    	/* Prepare to write files */
    	// if either file exists, someone has been here ahead of us
    	// (there is still a race, but this check shortens the open window)
    	if _, err := os.Stat(localFileName); err == nil {
    		u.deleteFiles(countFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    		return nil, fmt.Errorf("unable to upgrade connection: %s", responseError)
    	}
    
    	return NewClientConnectionWithPings(s.conn, s.pingPeriod)
    }
    
    // statusScheme is private scheme for the decoding here until someone fixes the TODO in NewConnection
    var statusScheme = runtime.NewScheme()
    
    // ParameterCodec knows about query parameters used with the meta v1 API spec.
    var statusCodecs = serializer.NewCodecFactory(statusScheme)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. 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)
Back to top