Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,326 for Paused (0.11 sec)

  1. src/cmd/go/testdata/mod/example.com_retract_v1.0.0-unused.txt

    -- .mod --
    module example.com/retract
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0-unused"}
    
    -- retract.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 122 bytes
    - Viewed (0)
  2. src/internal/fuzz/sys_posix.go

    		return syscall.Signal(-1), false
    	}
    	status := exitErr.Sys().(syscall.WaitStatus)
    	return status.Signal(), status.Signaled()
    }
    
    // isCrashSignal returns whether a signal was likely to have been caused by an
    // error in the program that received it, triggered by a fuzz input. For
    // example, SIGSEGV would be received after a nil pointer dereference.
    // Other signals like SIGKILL or SIGHUP are more likely to have been sent by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    ) (out *cluster.Cluster) {
    	defer runtime.HandleCrash(runtime.LogPanic, func(any) {
    		log.Errorf("clusters patch %s/%s caused panic, so the patches did not take effect", efw.Namespace, efw.Name)
    		IncrementEnvoyFilterErrorMetric(Cluster)
    	})
    	// In case the patches cause panic, use the clusters generated before to reduce the influence.
    	out = c
    	if efw == nil {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    			panic("these inputs caused a crash!")
    		}
    	})
    }
    
    func FuzzInt(f *testing.F) {
    	f.Add(0)
    	f.Fuzz(func(t *testing.T, a int) {
    		if a != 0 {
    			panic("this input caused a crash!")
    		}
    	})
    }
    
    func FuzzUint(f *testing.F) {
    	f.Add(uint(0))
    	f.Fuzz(func(t *testing.T, a uint) {
    		if a != 0 {
    			panic("this input caused a crash!")
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. Development.md

    Another more targeted interface is `CompilationFailedIndicator`.
    This interface is used to indicate that the exception is caused by a compilation failure. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/FileOrUriNotationConverterTest.groovy

            when:
            def parsed = parse(unsupportedURI)
            then:
            parsed instanceof URI
        }
    
        def "with non File URI String URI is returned"() {
            setup:
            def unsupportedURIString = "http://gradle.org"
            when:
            def parsed = parse(unsupportedURIString)
            then:
            parsed instanceof URI
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 16:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

            // It is possible that another task is being executed now and causes `task` to be configured.
            // In this case, we shouldn't attribute the error to the `task` alone, as it can be misleading,
            // and that usage can be benign. This is especially important when the currently running task is
            // marked as `notCompatibleWithConfigurationCache` - attributing the error to `task` will cause
            // the build to fail when it really shouldn't.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/parse.go

    // Script, Region, Variant, []Variant, Extension, []Extension or error. If a
    // Base, Script or Region or slice of type Variant or Extension is passed more
    // than once, the latter will overwrite the former. Variants and Extensions are
    // accumulated, but if two extensions of the same type are passed, the latter
    // will replace the former. For -u extensions, though, the key-type pairs are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AbstractChainedListenableFutureTest.java

      }
    
      public void testFutureGetThrowsWrappedError() throws Exception {
        Error error = new Error();
        inputFuture.setException(error);
        // Verify that get throws an ExecutionException, caused by an Error, when
        // the callback is called.
        listener.assertException(error);
      }
    
      public void testAddListenerAfterCallback() throws Throwable {
        inputFuture.set(VALID_INPUT_DATA);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/util/hosts.go

    	scope, fqdn := s.GetScopeAndFqdn()
    	fn := GetFullNameFromFQDN(fqdn)
    	return scope == "*" || scope == "." && ns == fn.Namespace.String() || scope == ns
    }
    
    // NewScopedFqdn converts the passed host to FQDN if needed and applies the passed scope.
    func NewScopedFqdn(scope string, namespace resource.Namespace, host string) ScopedFqdn {
    	fqdn := ConvertHostToFQDN(namespace, host)
    	return ScopedFqdn(scope + "/" + fqdn)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top