Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 176 for _ignored (0.14 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

        @SuppressWarnings("Since15")
        private static void addSuppressedIfAvailable(Throwable th, Throwable suppressed) {
            try {
                th.addSuppressed(suppressed);
            } catch (NoSuchMethodError ignored) {
                // addSuppressed is Java 7+
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        public void foo(@Nullable HardToCreate ignored, String required) {
          checkNotNull(required);
        }
      }
    
      public void testCanCreateDefault() {
        shouldPass(new CanCreateDefault());
      }
    
      @SuppressWarnings("unused") // used by reflection
      private static class CannotCreateDefault {
        public void foo(HardToCreate ignored, String required) {
          checkNotNull(ignored);
          checkNotNull(required);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeActionCodec.kt

            // TODO - should discard from graph instead
            return object : WorkNodeAction {
                override fun run(context: NodeExecutionContext) {
                    // Ignore
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api.go

    // A "soft" error is an error that still permits a valid interpretation of a
    // package (such as "unused variable"); "hard" errors may lead to unpredictable
    // behavior if ignored.
    type Error struct {
    	Pos  syntax.Pos // error position
    	Msg  string     // default error message, user-friendly
    	Full string     // full error message, for debugging (may contain internal details)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

    public class VisitableURLClassLoader extends URLClassLoader implements ClassLoaderHierarchy {
        static {
            try {
                ClassLoader.registerAsParallelCapable();
            } catch (NoSuchMethodError ignore) {
                // Not supported on Java 6
            }
        }
    
        private final Map<Object, Object> userData = new HashMap<Object, Object>();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    	registerStringParameter(constants.RepairSidecarAnnotation, "sidecar.istio.io/status",
    		"An annotation key that indicates this pod contains an istio sidecar. All pods without this annotation will be ignored."+
    			"The value of the annotation is ignored.")
    	registerStringParameter(constants.RepairInitContainerName, "istio-validation",
    		"The name of the istio init container (will crash-loop if CNI is not configured for the pod)")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //		option. Packages named main are ignored.
    //
    //	-buildmode=exe
    //		Build the listed main packages and everything they import into
    //		executables. Packages not named main are ignored.
    //
    //	-buildmode=pie
    //		Build the listed main packages and everything they import into
    //		position independent executables (PIE). Packages not named
    //		main are ignored.
    //
    //	-buildmode=plugin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. internal/http/listener_test.go

    			testCase.serverAddrs,
    			TCPOptions{},
    		)
    		for _, err := range errs {
    			if err != nil {
    				if strings.Contains(err.Error(), "The requested address is not valid in its context") {
    					// Ignore if IP is unbindable.
    					continue nextTest
    				}
    				if strings.Contains(err.Error(), "bind: address already in use") {
    					continue nextTest
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. .github/workflows/tests.yml

    name: tests
    
    on:
      push:
        branches-ignore:
          - 'gh-pages'
      pull_request:
        branches-ignore:
          - 'gh-pages'
    
    permissions:
      contents: read
    
    jobs:
      # Label of the container job
      sqlite:
        strategy:
          matrix:
            go: ['1.22', '1.21', '1.20']
            platform: [ubuntu-latest] # can not run in windows OS
        runs-on: ${{ matrix.platform }}
    
        steps:
        - name: Set up Go 1.x
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                    inFiles = files(inFiles, files2).filter { f -> f.name.endsWith('.txt') }
                }
            """
            file('a.txt').text = 'a'
            file('a.bin').text = 'ignore-me'
            file('b.txt').text = 'b'
            file('b.bin').text = 'ignore-me'
    
            when:
            run("merge")
    
            then:
            outputContains("result = [a.txt, b.txt]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top