Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 227 for fuzz (0.04 sec)

  1. src/internal/fuzz/trace.go

    // Copyright 2021 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.
    
    //go:build !libfuzzer
    
    package fuzz
    
    import _ "unsafe" // for go:linkname
    
    //go:linkname libfuzzerTraceCmp1 runtime.libfuzzerTraceCmp1
    //go:linkname libfuzzerTraceCmp2 runtime.libfuzzerTraceCmp2
    //go:linkname libfuzzerTraceCmp4 runtime.libfuzzerTraceCmp4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 00:12:53 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. src/internal/fuzz/sys_windows.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 fuzz
    
    import (
    	"fmt"
    	"os"
    	"os/exec"
    	"syscall"
    	"unsafe"
    )
    
    type sharedMemSys struct {
    	mapObj syscall.Handle
    }
    
    func sharedMemMapFile(f *os.File, size int, removeOnClose bool) (mem *sharedMem, err error) {
    	defer func() {
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:35:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package fuzzer
    
    import (
    	"math/rand"
    	"time"
    
    	fuzz "github.com/google/gofuzz"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/kubelet/config/v1beta1"
    	"k8s.io/kubernetes/pkg/cluster/ports"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/apis/scheduling/fuzzer/fuzzer.go

    )
    
    // Funcs returns the fuzzer functions for the scheduling api group.
    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(s *scheduling.PriorityClass, c fuzz.Continue) {
    			c.FuzzNoCustom(s)
    			if s.PreemptionPolicy == nil {
    				preemptLowerPriority := core.PreemptLowerPriority
    				s.PreemptionPolicy = &preemptLowerPriority
    			}
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. tests/integration/tests.mk

    test.integration.%.kube: | $(JUNIT_REPORT) check-go-tag
    	$(call run-test,./tests/integration/$(subst .,/,$*)/...)
    
    # Generate integration fuzz test targets for kubernetes environment.
    test.integration-fuzz.%.kube: | $(JUNIT_REPORT) check-go-tag
    	$(call run-test,./tests/integration/$(subst .,/,$*)/...,-tags="integfuzz integ")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/encoding/json/fold_test.go

    		{"AESKey", "aeskey"},
    		{"DESKey", "aeskey"},
    		{"AES Key", "aeskey"},
    	} {
    		f.Add([]byte(ss[0]), []byte(ss[1]))
    	}
    	equalFold := func(x, y []byte) bool { return string(foldName(x)) == string(foldName(y)) }
    	f.Fuzz(func(t *testing.T, x, y []byte) {
    		got := equalFold(x, y)
    		want := bytes.EqualFold(x, y)
    		if got != want {
    			t.Errorf("equalFold(%q, %q) = %v, want %v", x, y, got, want)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 17:37:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

                   " " + api_def_src_locations + " " + (",".join(op_names))),
        )
    
        for op_name in op_names:
            cc_test(
                name = op_name.lower() + "_fuzz",
                srcs = [op_name + "_fuzz.cc"],
                deps = kernel_deps +
                       [
                           "//tensorflow/security/fuzzing/cc:fuzz_session",
                           "@com_google_googletest//:gtest_main",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. tests/integration/security/fuzz/main_test.go

    //  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 fuzz
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var ist istio.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 18 02:28:30 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. tests/fuzz/xds_fuzzer.go

    // 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 fuzz
    
    import (
    	"testing"
    
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/test/xds"
    )
    
    func init() {
    	testing.Init()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/internal/fuzz/counters_unsupported.go

    // supported in the runtime. See src/runtime/libfuzzer*.
    //
    // If you update this constraint, also update internal/platform.FuzzInstrumented.
    //
    //go:build !((darwin || linux || windows || freebsd) && (amd64 || arm64))
    
    package fuzz
    
    // TODO(#48504): re-enable on platforms where instrumentation works.
    // In theory, we shouldn't need this file at all: if the binary was built
    // without coverage, then _counters and _ecounters should have the same address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 17:10:57 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top