Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for asmand (0.62 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

     *
     * <p>This type is intended to contain values that are calculated as nodes in the work graph, but which may also be calculated
     * on demand. An instance of this type can be used as a node in the work graph.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. architecture/security/istio-agent.md

    Envoy has stopped requested them; if there are no subscriptions they update will be ignored. If Envoy later watches these certificates again,
    a new one will be generated on demand.
    
    ## Configuration
    
    | Variable | Description |
    | - | - |
    |CA_ADDR|Address of CA, defaults to discoveryAddress|
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    	{as: ASRAW, a1: C_U15CON, a6: C_REG, type_: 56, size: 4},
    	{as: ASRAD, a1: C_REG, a6: C_REG, type_: 6, size: 4},
    	{as: ASRAD, a1: C_REG, a2: C_REG, a6: C_REG, type_: 6, size: 4},
    	{as: ASRAD, a1: C_U15CON, a2: C_REG, a6: C_REG, type_: 56, size: 4},
    	{as: ASRAD, a1: C_U15CON, a6: C_REG, type_: 56, size: 4},
    	{as: ARLWNM, a1: C_U15CON, a2: C_REG, a3: C_32CON, a6: C_REG, type_: 63, size: 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/handling-errors.md

    # Fehlerbehandlung
    
    Es gibt viele Situationen, in denen Sie einem Client, der Ihre API benutzt, einen Fehler zurückgeben müssen.
    
    Dieser Client könnte ein Browser mit einem Frontend, Code von jemand anderem, ein <abbr title="Internet of Things – Internet der Dinge: Geräte, die über das Internet Informationen austauschen">IoT</abbr>-Gerät, usw., sein.
    
    Sie müssten beispielsweise einem Client sagen:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:29 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/response-model.md

    So können Sie korrekte Typannotationen zu ihrer Funktion hinzufügen, die von ihrem Editor und Tools wie mypy verwendet werden. Und dennoch übernimmt FastAPI die Validierung und Dokumentation, usw., der Daten anhand von `response_model`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/a.out.go

    	AMOVDLT
    	AMOVDNE
    	ALOCR
    	ALOCGR
    
    	// find leftmost one
    	AFLOGR
    
    	// population count
    	APOPCNT
    
    	// integer bitwise
    	AAND
    	AANDW
    	AOR
    	AORW
    	AXOR
    	AXORW
    	ASLW
    	ASLD
    	ASRW
    	ASRAW
    	ASRD
    	ASRAD
    	ARLL
    	ARLLG
    	ARNSBG
    	ARXSBG
    	AROSBG
    	ARNSBGT
    	ARXSBGT
    	AROSBGT
    	ARISBG
    	ARISBGN
    	ARISBGZ
    	ARISBGNZ
    	ARISBHG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    Registering the service does not create the service instance.
    This happens on demand when a task first uses the service.
    The service instance will not be created if no task uses the service during a build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/scanner.go

    		goto assignop
    
    	case '%':
    		s.nextch()
    		s.op, s.prec = Rem, precMul
    		goto assignop
    
    	case '&':
    		s.nextch()
    		if s.ch == '&' {
    			s.nextch()
    			s.op, s.prec = AndAnd, precAndAnd
    			s.tok = _Operator
    			break
    		}
    		s.op, s.prec = And, precMul
    		if s.ch == '^' {
    			s.nextch()
    			s.op = AndNot
    		}
    		goto assignop
    
    	case '|':
    		s.nextch()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  9. pkg/test/echo/server/endpoint/http.go

    	}
    
    	return codes, nil
    }
    
    // code must be HTTP response code
    func validateCodeAndSlices(codecount string) (codeAndSlices, error) {
    	flavor := strings.Split(codecount, ":")
    
    	// Demand code or code:number
    	if len(flavor) == 0 || len(flavor) > 2 {
    		return codeAndSlices{http.StatusBadRequest, 9999},
    			fmt.Errorf("invalid %q (want code or code:count)", codecount)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * since multiple processes can acquire shared lock (due to that we currently also don't support on demand shared locks).<br>
             * 2.c If we fail, we throw a timeout exception.
             * <br><br>
             *
             * On close, we remove our details from info region and release the exclusive lock on the state region.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top