Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 515 for biases (0.23 sec)

  1. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/RetainStacktraceForInheritedTestMethodsTest/retainsStackTraceForInheritedTestMethods/src/test/java/g/Base.java

    import org.junit.jupiter.api.Assertions;
    import org.junit.jupiter.api.Test;
    
    public abstract class Base {
        @Test public void alwaysFails() {
            Assertions.fail("Oops, base failed again");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 204 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package environment
    
    import (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

                                                         const Bits &sam2) {
        const Bits biased1 = SignAndMagnitudeToBiased(sam1);
        const Bits biased2 = SignAndMagnitudeToBiased(sam2);
        return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1);
      }
    
      FloatingPointUnion u_;
    };
    
    // We cannot use std::numeric_limits<T>::max() as it clashes with the max()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  4. tools/docker-builder/dockerfile/parse.go

    			k, v := cut(c.Value[0], "=")
    			_, f := s.args[k]
    			if !f {
    				s.args[k] = v
    			}
    		case "FROM":
    			img := c.Value[0]
    			s.base = s.Expand(img)
    			if a, f := s.bases[s.base]; f {
    				s.base = a
    			}
    			if len(c.Value) == 3 { // FROM x as y
    				s.bases[c.Value[2]] = s.base
    			}
    		case "COPY":
    			// TODO you can copy multiple. This also doesn't handle folder semantics well
    			src := s.Expand(c.Value[0])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/base/base.go

    // Copyright 2009 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.
    
    package base
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"runtime/debug"
    	"runtime/metrics"
    )
    
    var atExitFuncs []func()
    
    func AtExit(f func()) {
    	atExitFuncs = append(atExitFuncs, f)
    }
    
    func Exit(code int) {
    	for i := len(atExitFuncs) - 1; i >= 0; i-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/base/base.go

    // Copyright 2017 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.
    
    // Package base defines shared basic pieces of the go command,
    // in particular logging and the Command structure.
    package base
    
    import (
    	"context"
    	"flag"
    	"fmt"
    	"log"
    	"os"
    	"os/exec"
    	"reflect"
    	"strings"
    	"sync"
    
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/str"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. docker/Dockerfile.base

    John Howard <******@****.***> 1715194251 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/templates/layouts/base.html

    zirain <******@****.***> 1684861711 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. tests/integration/base.yaml

    John Howard <******@****.***> 1717194202 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalog.java

         * <p>
         * Note: Returned aliases are normalized: '-', '_' and '.' have been replaced with '.'
         * </p>
         * @return the list of bundle aliases
         *
         * @since 7.1
         */
        List<String> getBundleAliases();
    
        /**
         * Returns the list of version aliases defined in this version catalog.
         * <p>
         * Note: Returned aliases are normalized: '-', '_' and '.' have been replaced with '.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top