Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,950 for _ignored (0.2 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

            inputDir.file('.gitignore').text = "some ignored file"
            inputDir.file('#ignored#').text = "some ignored file"
            inputDir.file('.git/any-name.txt').text = "some ignored file"
            inputDir.file('something/.git/deeper/dir/structure/any-name.txt').text = "some ignored file"
            inputDir.file('._ignored').text = "some ignored file"
            inputDir.file('some-file.txt~').text = "some ignored file"
    
            run 'myTask', "--info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

                twiceIgnoredProperty: [(TYPE): Ignored]
            ], [
                strict(ignoredAnnotatedPropertyMessage { property('twiceIgnoredProperty').ignoring('Ignored').alsoAnnotatedWith('Ignored2').includeLink() })
            ]
        }
    
        @SuppressWarnings("unused")
        interface TypeWithIgnoredPropertyWithMultipleIgnoreAnnotations {
            @Ignored
            @Ignored2
            String getTwiceIgnoredProperty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. 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)
  4. operator/pkg/compare/compare.go

    	}
    
    	aom, bom := ao.ToMap(), bo.ToMap()
    	return manifestDiff(aom, bom, nil, verbose)
    }
    
    // ManifestDiffWithSelect checks the manifest differences with selected and ignored resources.
    // The selected filter will apply before the ignored filter.
    func ManifestDiffWithRenameSelectIgnore(a, b, renameResources, selectResources, ignoreResources string, verbose bool) (string, error) {
    	rnm := getKeyValueMap(renameResources)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. internal/logger/logger.go

    	if logIgnoreError(err) {
    		return
    	}
    	for _, ignore := range ignored {
    		if errors.Is(err, ignore) {
    			return
    		}
    	}
    	logIf(ctx, subsystem, err)
    }
    
    func errToEntry(ctx context.Context, subsystem string, err error, errKind ...interface{}) log.Entry {
    	var l string
    	if anonFlag {
    		l = reflect.TypeOf(err).String()
    	} else {
    		l = fmt.Sprintf("%v (%T)", err, err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top