Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for demand (0.18 sec)

  1. src/main/resources/fess_indices/_cloud/fess.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  2. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    subduplicate Proportion of the thicknesses of the Plates. And this shews sufficiently that the Rings depend on both the Surfaces of the Glass. They depend on the convex Surface, because they are more luminous when that Surface is quick-silver'd over than when it is without Quick-silver. They depend also upon the concave Surface, because without that Surface a Speculum makes them not. They depend on both Surfaces, and on the distances between them, because their bigness is varied by varying only that...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

    * The deprecated kubelet --configure-cbr0 flag has been removed, and with that the "classic" networking mode as well.  If you depend on this mode, please investigate whether the other network plugins `kubenet` or `cni` meet your needs. ([#34906](https://github.com/kubernetes/kubernetes/pull/34906), [@luxas](https://github.com/luxas))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    	if strings.HasPrefix(addr, "@") {
    		return nil
    	}
    
    	// Note that we use path, not path/filepath even though a domain socket path is a file path.  We don't want the
    	// Pilot output to depend on which OS Pilot is run on, so we always use Unix-style forward slashes.
    	if !path.IsAbs(addr) || strings.HasSuffix(addr, "/") {
    		return fmt.Errorf("%s is not an absolute path to a file", addr)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.4.md

    * Federation can now be deployed using the `federation/deploy/deploy.sh` script. This script does not depend on any of the development environment shell library/scripts. This is an alternative to the current `federation-up.sh`/`federation-down.sh` scripts. Both the scripts are going to co-exist in this release, but the `federation-up.sh`/`federation-down.sh`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  6. fastapi/applications.py

            webhooks: Annotated[
                Optional[routing.APIRouter],
                Doc(
                    """
                    Add OpenAPI webhooks. This is similar to `callbacks` but it doesn't
                    depend on specific *path operations*.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                    **Note**: This is available since OpenAPI 3.1.0, FastAPI 0.99.0.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    def LstmCifgInputConstraint : PredOpTrait<
      "the cifg inputs should all be specified or none",
       // If LSTM has combined input/forget gate, input 1, 5, 9, 12, 20 are all none
       // or 1, 5, 12 should not be none. Inputs 9 and 20 depend on LSTM's variants.
       Or<[
         And<[TypeIsPred<"input_to_input_weights", NoneType>,
              TypeIsPred<"recurrent_to_input_weights", NoneType>,
              TypeIsPred<"cell_to_input_weights", NoneType>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	mp := getg().m
    
    	// Emit a trace event for this syscall -> dead transition.
    	//
    	// N.B. the tracer can run on a bare M just fine, we just have
    	// to make sure to do this before setg(nil) and unminit.
    	var trace traceLocker
    	if !mp.isExtraInSig {
    		trace = traceAcquire()
    	}
    
    	// Return mp.curg to dead state.
    	casgstatus(mp.curg, _Gsyscall, _Gdead)
    	mp.curg.preemptStop = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	v := ValueOf(true)
    	if v.Bool() != true {
    		t.Fatal("ValueOf(true).Bool() = false")
    	}
    }
    
    type integer int
    type T struct {
    	a int
    	b float64
    	c string
    	d *int
    }
    
    var _ = T{} == T{} // tests depend on T being comparable
    
    type pair struct {
    	i any
    	s string
    }
    
    func assert(t *testing.T, s, want string) {
    	if s != want {
    		t.Errorf("have %#q want %#q", s, want)
    	}
    }
    
    var typeTests = []pair{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top