Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 285 for oplus (0.12 sec)

  1. test/64bit.go

    }
    
    func (a Int64) RightShift64(b Uint64) (c Int64) {
    	if b.hi != 0 || b.lo >= 64 {
    		return a.RightShift(64)
    	}
    	return a.RightShift(uint(b.lo))
    }
    
    func (a Int64) Plus(b Int64) (c Int64)	{ return a.Uint64().Plus(b.Uint64()).Int64() }
    
    func (a Int64) Minus(b Int64) (c Int64)	{ return a.Uint64().Minus(b.Uint64()).Int64() }
    
    func (a Int64) Neg() (c Int64)	{ return a.Uint64().Neg().Int64() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

    }
    
    configurations {
      myCustom
    }
    
    dependencies {
        myCustom 'foo:bar:1.0'
    }
    
    idea {
      module {
        scopes.PROVIDED.plus << configurations.myCustom
        scopes.COMPILE.plus << configurations.myCustom
      }
    }
    """
            //then
            def dependencies = parseIml("root.iml").dependencies
            assert dependencies.libraries.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. src/regexp/syntax/regexp.go

    		}
    		b.WriteRune(')')
    	case OpStar, OpPlus, OpQuest, OpRepeat:
    		p := printFlags(0)
    		sub := re.Sub[0]
    		if sub.Op > OpCapture || sub.Op == OpLiteral && len(sub.Rune) > 1 {
    			p = flagPrec
    		}
    		writeRegexp(b, sub, p, flags)
    
    		switch re.Op {
    		case OpStar:
    			b.WriteRune('*')
    		case OpPlus:
    			b.WriteRune('+')
    		case OpQuest:
    			b.WriteRune('?')
    		case OpRepeat:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. docs/fr/docs/features.md

    Dans le dernier sondage effectué auprès de développeurs python il était clair que <a href="https://www.jetbrains.com/research/python-developers-survey-2017/#tools-and-features" class="external-link" target="_blank">la fonctionnalité la plus utilisée est "l’autocomplétion"</a>.
    
    Tout le framework **FastAPI** a été conçu avec cela en tête. L'autocomplétion fonctionne partout.
    
    Vous devrez rarement revenir à la documentation.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/first-steps.md

    "Opération" fait référence à une des "méthodes" HTTP.
    
    Une de :
    
    * `POST`
    * `GET`
    * `PUT`
    * `DELETE`
    
    ...ou une des plus exotiques :
    
    * `OPTIONS`
    * `HEAD`
    * `PATCH`
    * `TRACE`
    
    Dans le protocol HTTP, vous pouvez communiquer avec chaque chemin en utilisant une (ou plus) de ces "méthodes".
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/query-params-str-validations.md

    ```Python
    q: Union[str, None] = None
    ```
    
    Mais déclare explicitement `q` comme étant un paramètre de requête.
    
    !!! info
        Gardez à l'esprit que la partie la plus importante pour rendre un paramètre optionnel est :
    
        ```Python
        = None
        ```
    
        ou :
    
        ```Python
        = Query(None)
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            assertCanMutate();
            CollectionSupplier<T, C> explicitValue = getExplicitValue(defaultValue).absentIgnoringIfNeeded(ignoreAbsent);
            setSupplier(explicitValue.plus(collector.absentIgnoringIfNeeded(ignoreAbsent)));
        }
    
        @Nullable
        @Override
        public Class<C> getType() {
            return Cast.uncheckedCast(collectionType);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. docs/fr/docs/python-types.md

    ```Python
    {!../../../docs_src/python_types/tutorial011.py!}
    ```
    
    !!! info
        Pour en savoir plus à propos de <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic, allez jeter un coup d'oeil à sa documentation</a>.
    
    **FastAPI** est basé entièrement sur **Pydantic**.
    
    Vous verrez bien plus d'exemples de son utilisation dans [Tutoriel - Guide utilisateur](tutorial/index.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            assertCanMutate();
            MapSupplier<K, V> explicitValue = getExplicitValue(defaultValue).absentIgnoringIfNeeded(ignoreAbsent);
            setSupplier(explicitValue.plus(collector.absentIgnoringIfNeeded(ignoreAbsent)));
        }
    
        private Configurer getConfigurer() {
            return getConfigurer(false);
        }
    
        private Configurer getConfigurer(boolean ignoreAbsent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

                }
            });
    
            setFrom(Cast.castNullable(FileCollection.class, object));
        }
    
        @Override
        public FileCollection plus(FileCollection collection) {
            return new UnionFileCollection(taskDependencyFactory, this, (FileCollectionInternal) collection);
        }
    
        @Override
        public void setFrom(Iterable<?> path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top