Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for Raisin (0.11 sec)

  1. src/main/resources/fess_message_fr.properties

    # five framework-embedded messages (don't change key names)
    # - - - - - - - - - -/
    errors.login.failure=La connexion a échoué.
    errors.app.illegal.transition=Veuillez réessayer en raison d'une transition illégale.
    errors.app.db.already.deleted=d'autres peuvent être mis à jour, alors réessayez.
    errors.app.db.already.updated=d'autres peuvent être mis à jour, alors réessayez.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options.go

    			delete(completed.APIEnablement.RuntimeConfig, key)
    		}
    	}
    
    	return CompletedOptions{
    		completedOptions: &completed,
    	}, nil
    }
    
    // ServiceIPRange checks if the serviceClusterIPRange flag is nil, raising a warning if so and
    // setting service ip range to the default value in kubeoptions.DefaultServiceIPCIDR
    // for now until the default is removed per the deprecation timeline guidelines.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    and save any existing signal handler. If a signal is delivered to a
    non-Go thread, it will act as described above, except that if there is
    an existing non-Go signal handler, that handler will be installed
    before raising the signal.
    
    # Windows
    
    On Windows a ^C (Control-C) or ^BREAK (Control-Break) normally cause
    the program to exit. If Notify is called for [os.Interrupt], ^C or ^BREAK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/aenum.go

    	AFMOVW
    	AFMOVWP
    	AFMOVX
    	AFMOVXP
    	AFMULD
    	AFMULDP
    	AFMULF
    	AFMULL
    	AFMULW
    	AFNOP
    	AFPATAN
    	AFPREM
    	AFPREM1
    	AFPTAN
    	AFRNDINT
    	AFRSTOR
    	AFSAVE
    	AFSCALE
    	AFSIN
    	AFSINCOS
    	AFSQRT
    	AFSTCW
    	AFSTENV
    	AFSTSW
    	AFSUBD
    	AFSUBDP
    	AFSUBF
    	AFSUBL
    	AFSUBRD
    	AFSUBRDP
    	AFSUBRF
    	AFSUBRL
    	AFSUBRW
    	AFSUBW
    	AFTST
    	AFUCOM
    	AFUCOMI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. docs/fr/docs/alternatives.md

    Mais comme les données TypeScript ne sont pas préservées après la compilation en JavaScript, il ne peut pas compter sur les types pour définir la validation, la sérialisation et la documentation en même temps. En raison de cela et de certaines décisions de conception, pour obtenir la validation, la sérialisation et la génération automatique de schémas, il est nécessaire d'ajouter des décorateurs à de nombreux endroits. Cela devient donc assez verbeux.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

      %0 = "tf.IfRegion"(%arg0) ({
        // Outer Then
        %cond = "tf.LogicalNot"(%arg0) : (tensor<i1>) -> tensor<i1>
        %asin = "tf.Asin"(%arg1) : (tensor<*xf32>) -> tensor<*xf32>
    
        // nested IfRegion
        %1 = "tf.IfRegion"(%cond) ({
            %2 = "tf.Abs"(%asin) : (tensor<*xf32>) -> tensor<*xf32>
            "tf.Yield"(%2) : (tensor<*xf32>) -> ()
          }, {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  7. src/runtime/signal_unix.go

    		flags = sigtable[sig].flags
    	}
    
    	// If the signal is ignored, raising the signal is no-op.
    	if handler == _SIG_IGN || (handler == _SIG_DFL && flags&_SigIgn != 0) {
    		return
    	}
    
    	// Reset the signal handler and raise the signal.
    	// We are currently running inside a signal handler, so the
    	// signal is blocked. We need to unblock it before raising the
    	// signal, or the signal we raise will be ignored until we return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. src/time/zoneinfo.go

    		}
    		// Now dow is the day-of-week of the first day of r.mon.
    		// Get the day-of-month of the first "dow" day.
    		d := r.day - dow
    		if d < 0 {
    			d += 7
    		}
    		for i := 1; i < r.week; i++ {
    			if d+7 >= daysIn(Month(r.mon), year) {
    				break
    			}
    			d += 7
    		}
    		d += int(daysBefore[r.mon-1])
    		if isLeap(year) && r.mon > 2 {
    			d++
    		}
    		s = d * secondsPerDay
    	}
    
    	return s + r.time - off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        func: Callable[[], NotNoneT], error_msg: str
    ) -> Optional[NotNoneT]:
      """Calls `func` and returns `None` on error.
    
      This is used to gracefully return the 'error status' represented as `None`, as
      raising exceptions from `PyFunctionLibrary` methods crashes the program.
    
      Args:
        func: The function to run. The function should be a callable returning a
          non-None value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. docs/yo/docs/index.md

    * Ṣàyẹ̀wò bóyá ìbéèrè àṣàyàn pàrámítà kan wà tí orúkọ rẹ̀ ń jẹ́ `q` (gẹ́gẹ́ bíi `http://127.0.0.1:8000/items/foo?q=somequery`) fún ìbéèrè HTTP `GET`.
        * Bí wọ́n ṣe kéde pàrámítà `q` pẹ̀lú `= None`, ó jẹ́ àṣàyàn (i.e optional).
        * Láìsí `None` yóò nílò (gẹ́gẹ́ bí kókó èsì ìbéèrè HTTP ṣe wà pẹ̀lú `PUT`).
    * Fún àwọn ìbéèrè HTTP `PUT` sí `/items/{item_id}`, kà kókó èsì ìbéèrè HTTP gẹ́gẹ́ bí JSON:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top