Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,233 for indication (0.18 sec)

  1. src/fmt/doc.go

    description.
    
    If an Error or String method triggers a panic when called by a
    print routine, the fmt package reformats the error message
    from the panic, decorating it with an indication that it came
    through the fmt package.  For example, if a String method
    calls panic("bad"), the resulting formatted message will look
    like
    
    	%!s(PANIC=bad)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

        ```
    
    In this case, the client will see an *HTTP 500 Internal Server Error* response as it should, given that we are not raising an `HTTPException` or similar, but the server will **not have any logs** or any other indication of what was the error. đŸ˜±
    
    ### Always `raise` in Dependencies with `yield` and `except`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_simulation_test.go

    					},
    				},
    			},
    		},
    		simulationTest{
    			// TODO(https://github.com/istio/istio/issues/27481) this may be a bug. At very least, this should have indication to user
    			name: "multiple protocols on a port - tcp first",
    			config: createGateway("alpha", "", tcpServer) +
    				createGateway("beta", "", httpServer),
    			calls: []simulation.Expect{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. docs/pt/docs/deployment.md

    * Existe uma extensão para o protocolo TLS (o que controla a encriptação no nível TCP, antes do HTTP) chamada <a href="https://en.wikipedia.org/wiki/Server_Name_Indication" class="external-link" target="_blank"><abbr title="Server Name Indication">SNI</abbr></a>.
        * Essa extensĂŁo SNI permite um Ășnico servidor (com um Ășnico endereço IP) a ter vĂĄrios certificados HTTPS e servir mĂșltiplas aplicaçÔes/domĂ­nios HTTPS.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  5. docs/LICENSE

    will be considered the “Licensor.” The text of the Creative Commons
    public licenses is dedicated to the public domain under the CC0 Public
    Domain Dedication. Except for the limited purpose of indicating that
    material is shared under a Creative Commons public license or as
    otherwise permitted by the Creative Commons policies published at
    creativecommons.org/policies, Creative Commons does not authorize the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  6. src/encoding/json/scanner.go

    // caller can follow along if it wishes.
    // The return value scanEnd indicates that a single top-level
    // JSON value has been completed, *before* the byte that
    // just got passed in.  (The indication must be delayed in order
    // to recognize the end of numbers: is 123 a whole value or
    // the beginning of 12345e+6?).
    type scanner struct {
    	// The step is a func to be called to execute the next transition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. internal/dsync/drwmutex.go

    	}
    	wg.Wait()
    
    	// Return true if releaseAll was successful, otherwise we return 'false'
    	// to indicate we haven't sufficiently unlocked lockers to avoid deadlocks.
    	//
    	// Caller may use this as an indication to call again.
    	return !checkFailedUnlocks(*locks, tolerance)
    }
    
    // Unlock unlocks the write lock.
    //
    // It is a run-time error if dm is not locked on entry to Unlock.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/language.go

    // a most likely candidate.
    // If more than one script is commonly used for a language, the most likely one
    // is returned with a low confidence indication. For example, it returns (Cyrl, Low)
    // for Serbian.
    // If a script cannot be inferred (Zzzz, No) is returned. We do not use Zyyy (undetermined)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/debug/dwarf/type.go

    			s += " : " + strconv.FormatInt(f.BitSize, 10)
    			s += "@" + strconv.FormatInt(f.bitOffset(), 10)
    		}
    	}
    	s += "}"
    	return s
    }
    
    // An EnumType represents an enumerated type.
    // The only indication of its native integer type is its ByteSize
    // (inside [CommonType]).
    type EnumType struct {
    	CommonType
    	EnumName string
    	Val      []*EnumValue
    }
    
    // An EnumValue represents a single enumeration value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. src/internal/trace/summary.go

    					})
    					if ok {
    						// NB: this PC won't actually be consistent for
    						// goroutines which existed at the start of the
    						// trace. The UI doesn't use it directly; this
    						// mainly serves as an indication that we
    						// actually saw a call stack for the goroutine
    						g.PC = frame.PC
    						g.Name = frame.Func
    					}
    				}
    			}
    
    			// Handle transition in.
    			switch new {
    			case GoRunning:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top