Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 684 for _ignored (0.12 sec)

  1. pkg/config/analysis/analyzers/testdata/misannotated.yaml

          command: ['curl']
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: details
      labels:
        app: details
      annotations:
        # Annotation that Istio doesn't know about, but isn't an Istio annotation, thus ignored
        kubernetes.io/psp: my-privileged-psp
    spec:
      ports:
      - name: http
        port: 80
        targetPort: 9080
      selector:
        app: details
    ---
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/internal/profile/filter.go

    // those that match focus and do not match the ignore regular
    // expression.
    func (p *Profile) FilterSamplesByTag(focus, ignore TagMatch) (fm, im bool) {
    	samples := make([]*Sample, 0, len(p.Sample))
    	for _, s := range p.Sample {
    		focused, ignored := focusedSample(s, focus, ignore)
    		fm = fm || focused
    		im = im || ignored
    		if focused && !ignored {
    			samples = append(samples, s)
    		}
    	}
    	p.Sample = samples
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * If a subtype doesn't override a super-type defined category, the corresponding annotation in that category gets inherited.
     * Subtypes can mark methods to be ignored by using an ignore annotation.
     * Ignored methods don't inherit super-type annotations.
     * </p>
     *
     * <strong>Boolean properties</strong>
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            }
        }
    
        def 'paths ignored in file system checks are included in the configuration cache fingerprint'() {
            when:
            configurationCacheRun()
            configurationCacheRun("-D$IGNORE_FS_CHECKS_PROPERTY=test")
    
            then:
            outputContains("the set of paths ignored in file-system-check input tracking has changed")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. cmd/leak-detect_test.go

    	return func() {
    		initialStackSnapShot.DetectLeak(t)
    	}
    }
    
    // list of functions to be ignored from the stack trace.
    // Leak detection is done when tests are run, should ignore the tests related functions,
    // and other runtime functions while identifying leaks.
    var ignoredStackFns = []string{
    	"",
    	// Below are the stacks ignored by the upstream leaktest code.
    	"testing.Main(",
    	"testing.tRunner(",
    	"testing.tRunner(",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SambaHelper.java

                } catch (final Exception e) {
                    // ignore
                }
            }
            final Integer id = fessConfig.getAvailableSmbSidType(type);
            if (id != null) {
                return createSearchRole(id, sid.getAccountName());
            }
            if (logger.isDebugEnabled()) {
                logger.debug("Ignored SID: {} {}", type, sid);
            }
            return null;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/initialization/buildsrc/BuildSrcDetectorTest.groovy

        def "ignores buildSrc file that is not a directory"() {
            expect:
            !isValidBuildSrcBuild(temp.file("buildSrc"))
            !isValidBuildSrcBuild(temp.createFile("buildSrc"))
        }
    
        def "ignores empty buildSrc directory"() {
            expect:
            !isValidBuildSrcBuild(temp.createDir("buildSrc"))
        }
    
        def "ignores buildSrc directory without valid Gradle build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. testing/precondition-tester/README.md

    The issue is that we _ignore_ tests, where the precondition is not satisfied.
    Albeit being the correct solution, this can cause problems where a test is _not running anywhere_ and we don't know anything about it.
    
    For example, a `RunsOnPDP11` precondition, which we won't satisfy anywhere as we don't run tests on such hardware, will always be ignored.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/os/signal/signal.go

    			remove(signum(s))
    		}
    	}
    }
    
    // Ignore causes the provided signals to be ignored. If they are received by
    // the program, nothing will happen. Ignore undoes the effect of any prior
    // calls to [Notify] for the provided signals.
    // If no signals are provided, all incoming signals will be ignored.
    func Ignore(sig ...os.Signal) {
    	cancel(sig, ignoreSignal)
    }
    
    // Ignored reports whether sig is currently ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

        }
    
        def 'ignores visited node that is to be ignored'() {
            given:
            def identifier = newId(mid, '1.1')
            def ignoredIdentifier = newId(DefaultModuleIdentifier.newId('org', 'ignored'), '1.0')
            startWithState([identifier], LockEntryFilterFactory.forParameter(['org:ignored'], "Update lock", true))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top