Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for badness (0.46 sec)

  1. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    ! grep 'mod.example/sub/sub.go:' $WORK/covdata2/out.txt
    grep 'rsc.io' $WORK/covdata2/out.txt
    ! grep 'bufio/bufio.go:' $WORK/covdata2/out.txt
    
    #-------------------------------------------
    # end of test cmds, start of harness and related files.
    
    -- go.mod --
    module mod.example
    
    go 1.20
    
    require rsc.io/quote/v3 v3.0.0
    
    -- main/main.go --
    package main
    
    import (
    	"fmt"
    	"mod.example/sub"
    
    	"rsc.io/quote"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_build_simple.txt

    ! exec ./examplewithrace.exe panic
    ! stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    go tool covdata percent -i=data2/panic
    stdout  'coverage:.*[0-9.]+%'
    
    # end of test cmds, start of harness and related files.
    
    -- go.mod --
    module example
    
    go 1.18
    
    -- main/example.go --
    package main
    
    import "example/sub"
    
    func main() {
    	sub.S()
    }
    
    -- sub/sub.go --
    
    package sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/testsupport.go

    			return err
    		}
    	}
    
    	// Collect pods from test run. For the majority of cases we would
    	// expect to see a single pod here, but allow for multiple pods in
    	// case the test harness is doing extra work to collect data files
    	// from builds that it kicks off as part of the testing.
    	podlist, err := pods.CollectPods([]string{dir}, false)
    	if err != nil {
    		return fmt.Errorf("reading from %s: %v", dir, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_darwin_arm64.c

    		return;
    	}
    	buf[url_len-sizeof("/Info.plist")+1] = 0;
    	char *dir = &buf[0] + sizeof("file://")-1;
    
    	if (chdir(dir) != 0) {
    		fprintf(stderr, "runtime/cgo: chdir(%s) failed\n", dir);
    	}
    
    	// The test harness in go_ios_exec passes the relative working directory
    	// in the GoExecWrapperWorkingDirectory property of the app bundle.
    	CFStringRef wd_ref = CFBundleGetValueForInfoDictionaryKey(bundle, CFSTR("GoExecWrapperWorkingDirectory"));
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.harness;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.apache.commons.jxpath.ri.Compiler;
    import org.apache.commons.jxpath.ri.compiler.NodeNameTest;
    import org.apache.commons.jxpath.ri.compiler.NodeTest;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/abiutilsaux_test.go

    // Copyright 2020 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 test
    
    // This file contains utility routines and harness infrastructure used
    // by the ABI tests in "abiutils_test.go".
    
    import (
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

      // node in `should_revisit` denotes that the deadness flowing out from any
      // output from said node may have changed.  This is fine; only switches
      // propagate different deadness along different output edges, and since the
      // delta is solely due to the input *values* (and not input deadness), the
      // delta should not change in the second iteration.
      std::vector<bool> should_revisit;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. README.md

    ====
    [![Java CI with Maven](https://github.com/codelibs/fess/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess/actions/workflows/maven.yml)
    [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess)
    [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gitbucket/gitbucket/blob/master/LICENSE)
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/settings/PomConstructionWithSettingsTest.java

    import org.apache.maven.project.DefaultProjectBuilder;
    import org.apache.maven.project.DefaultProjectBuildingRequest;
    import org.apache.maven.project.ProjectBuildingRequest;
    import org.apache.maven.project.harness.PomTestWrapper;
    import org.apache.maven.settings.v4.SettingsStaxReader;
    import org.codehaus.plexus.testing.PlexusTest;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    transformations will operate on.
    
    We make use of two different dialects to model TensorFlow graphs in MLIR: first
    the `tf_executor` dialect that represents the execution model of the TensorFlow
    executor (e.g. control dependencies, deadness propagation) and the `tf` dialect
    which represent the regular operations in a TensorFlow graph (the ones that
    don’t have special contract with the executor).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
Back to top