Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 679 for oplus (1.1 sec)

  1. docs/fr/docs/alternatives.md

    Il serait en fait plus courant d'utiliser Requests _à l'intérieur_ d'une application FastAPI.
    
    Mais quand même, FastAPI s'est inspiré de Requests.
    
    **Requests** est une bibliothèque pour _interagir_ avec les API (en tant que client), tandis que **FastAPI** est une bibliothèque pour _créer_ des API (en tant que serveur).
    
    Ils sont, plus ou moins, aux extrémités opposées, se complétant l'un l'autre.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. src/fmt/format.go

    	// the sign is explicitly asked for by f.plus.
    	if f.space && num[0] == '+' && !f.plus {
    		num[0] = ' '
    	}
    	// Special handling for infinities and NaN,
    	// which don't look like a number so shouldn't be padded with zeros.
    	if num[1] == 'I' || num[1] == 'N' {
    		oldZero := f.zero
    		f.zero = false
    		// Remove sign before NaN if not asked for.
    		if num[1] == 'N' && !f.space && !f.plus {
    			num = num[1:]
    		}
    		f.pad(num)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

        private val people: NamedDomainObjectSet<Person> = project.objects.namedDomainObjectSet(Person::class)
    
        // Add a person to the set
        fun addPerson(name: String) {
            people.plus(name)
        }
    }
    // end::ndos[]
    
    // tag::ndol[]
    
    abstract class MyPluginExtensionNamedDomainObjectList {
        // Define a named domain object list to hold Person objects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/GroovyClass.groovy

                }
            }
            return urls;
        }
    
        public GroovyClass plus(GroovyClass other) {
            if (files.isEmpty()) {
                return other;
            }
            if (other.isEmpty()) {
                return this;
            }
            return new GroovyClass(concat(files, other.getAsFiles()));
        }
    
        public GroovyClass plus(Collection<File> other) {
            if (other.isEmpty()) {
                return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

         * @return a new supplier that produces a collection that contains the
         * same elements as this supplier, plus the elements obtained via the given <code>added</code> collector
         */
        CollectionSupplier<T, C> plus(Collector<T> added);
    
        ExecutionTimeValue<? extends C> calculateExecutionTimeValue();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/timestruct.go

    	if usec < 0 {
    		usec += 1e6
    		sec--
    	}
    	return setTimeval(sec, usec)
    }
    
    // Unix returns the time stored in ts as seconds plus nanoseconds.
    func (ts *Timespec) Unix() (sec int64, nsec int64) {
    	return int64(ts.Sec), int64(ts.Nsec)
    }
    
    // Unix returns the time stored in tv as seconds plus nanoseconds.
    func (tv *Timeval) Unix() (sec int64, nsec int64) {
    	return int64(tv.Sec), int64(tv.Usec) * 1000
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. docs/fr/docs/advanced/additional-status-codes.md

    Il utilisera le code HTTP par défaut ou celui que vous avez défini dans votre *chemin d'accès*.
    
    ## Codes HTTP supplémentaires
    
    Si vous souhaitez renvoyer des codes HTTP supplémentaires en plus du code principal, vous pouvez le faire en renvoyant directement une `Response`, comme une `JSONResponse`, et en définissant directement le code HTTP supplémentaire.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/defun_export.py

    import tensorflow.compat.v1 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common_v1
    from tensorflow.python.framework import function
    
    
    @function.Defun(tf.float32, tf.float32)
    def plus(a, b):
      return a + b
    
    
    def test_defun():
      x = tf.constant([[1.0], [1.0], [1.0]])
      y = tf.constant([[2.0], [2.0], [2.0]])
    
      # Verify that the function defined using function.Defun
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

         */
        @Override
        public TransformedClassPath plus(Collection<File> classPath) {
            return new TransformedClassPath(originalClassPath.plus(classPath), transforms);
        }
    
        /**
         * {@inheritDoc}
         * <p>
         * The appended classpath is not additionally transformed.
         */
        @Override
        public TransformedClassPath plus(ClassPath classPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1alpha1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *SelfSubjectReview) APILifecycleDeprecated() (major, minor int) {
    	return 1, 29
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top