Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,601 for Here (0.11 sec)

  1. src/math/cmplx/exp.go

    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue32560.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Values smaller than 64-bits were mistakenly always proven to be
    // non-negative.
    //
    // The tests here are marked go:noinline to ensure they're
    // independently optimized by SSA.
    
    package main
    
    var x int32 = -1
    
    //go:noinline
    func a() {
    	if x != -1 {
    		panic(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 18:03:46 UTC 2019
    - 690 bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/test/resources/org/gradle/jvm/toolchain/internal/install/jdk-with-symlinks.tar.gz

    jdk-with-symlinks.tar jdk-with-symlinks/bin jdk-with-symlinks/file jdk-with-symlinks/zulu-11.jdk/Contents/Home/bin/file Something here...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:40:04 UTC 2024
    - 318 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

        boolean hasLink(String name);
    
        boolean hasLink(String name, ModelType<?> type);
    
        // Note: order is crucial here. Nodes are traversed through these states in the order defined below
        enum State {
            Registered(true), // Initial state. Only path and some projections are known here
            Discovered(true), // All projections are defined
            Created(true), // Private data has been created, initial rules discovered
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/impl/string.h

      String() : String("") {}
      String(const String& s) : value_(s.value_) {}
    
      // This is the same as the default equality operator, which works because
      // we're interning all strings. It is specified here so we are explicit about
      // it. We're not saying "= default;" because we can't use C++20 features yet.
      bool operator==(const String& other) const { return value_ == other.value_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/groovy/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1alpha1/types_swagger_doc_generated.go

    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_SelfSubjectReview = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. test/fixedbugs/issue13162.go

    		os.Exit(1)
    	}
    
    	i = -1
    	// i is shadowed here, so its value should be unchanged.
    	for i := range s {
    		b[i] = s[i]
    	}
    	if want := -1; i != want {
    		fmt.Printf("index after range without side-effect = %d want %d\n", i, want)
    		os.Exit(1)
    	}
    
    	i = -1
    	r = -1
    	// i and r are shadowed here, so their values should be unchanged.
    	for i, r := range s {
    		b[i] = byte(r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 18:17:20 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/groovy/settings.gradle

    rootProject.name = 'consumer'
    
    include 'my-greeting-app'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 137 bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/some-dir/nested-dir/bad-annotation-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: some-service
      annotations:
        # This annotation doesn't exist!
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 29 03:04:35 UTC 2020
    - 157 bytes
    - Viewed (0)
Back to top