Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,017 for usedBy (0.24 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ResourceQuota.yaml

        matchExpressions:
        - operator: operatorValue
          scopeName: scopeNameValue
          values:
          - valuesValue
      scopes:
      - scopesValue
    status:
      hard:
        hardKey: "0"
      used:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ResourceQuota.json

              "values": [
                "valuesValue"
              ]
            }
          ]
        }
      },
      "status": {
        "hard": {
          "hardKey": "0"
        },
        "used": {
          "usedKey": "0"
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ResourceQuota.json

              "values": [
                "valuesValue"
              ]
            }
          ]
        }
      },
      "status": {
        "hard": {
          "hardKey": "0"
        },
        "used": {
          "usedKey": "0"
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ResourceQuota.yaml

        matchExpressions:
        - operator: operatorValue
          scopeName: scopeNameValue
          values:
          - valuesValue
      scopes:
      - scopesValue
    status:
      hard:
        hardKey: "0"
      used:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/workcmd/use.go

    			return
    		}
    
    		if dup := keepDirs[absDir]; dup != "" && dup != dir {
    			base.Errorf(`go: already added "%s" as "%s"`, dir, dup)
    		}
    		keepDirs[absDir] = dir
    	}
    
    	for _, useDir := range args {
    		absArg, _ := pathRel(workDir, useDir)
    
    		info, err := fsys.Stat(base.ShortPath(absArg))
    		if err != nil {
    			// Errors raised from os.Stat are formatted to be more user-friendly.
    			if os.IsNotExist(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractModuleDependencyResolveTest.groovy

        ResolveTestFixture resolve
    
        protected final RemoteRepositorySpec repoSpec = new RemoteRepositorySpec()
    
        boolean useIvy() {
            GradleMetadataResolveInterceptor.useIvy()
        }
    
        boolean useMaven() {
            !useIvy()
        }
    
        boolean isGradleMetadataPublished() {
            GradleMetadataResolveInterceptor.isGradleMetadataPublished()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 16:23:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/crypto/tls/ech.go

    	b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) { b.AddBytes(payload) })
    	return b.Bytes()
    }
    
    func computeAndUpdateOuterECHExtension(outer, inner *clientHelloMsg, ech *echContext, useKey bool) error {
    	var encapKey []byte
    	if useKey {
    		encapKey = ech.encapsulatedKey
    	}
    	encodedInner, err := encodeInnerClientHello(inner, int(ech.config.MaxNameLength))
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/AbstractComponentSelectionRulesIntegrationTest.groovy

            Set uris = []
            def repo = GradleMetadataResolveRunner.useIvy() ? ivyHttpRepo : mavenHttpRepo
            def desc = GradleMetadataResolveRunner.useIvy() ? 'ivy' : 'pom'
            def resolve = repo.module(group, module, version)
            uris << resolve."$desc".uri
            if (expectGradleMetadataRequest) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. test/fixedbugs/issue5957.dir/c.go

    import (
    	"./a" // ERROR "imported and not used: \x22test/a\x22 as surprise|imported and not used: surprise|\x22test/a\x22 imported as surprise and not used"
    	"./b" // ERROR "imported and not used: \x22test/b\x22 as surprise2|imported and not used: surprise2|\x22test/b\x22 imported as surprise2 and not used"
    	b "./b" // ERROR "imported and not used: \x22test/b\x22$|imported and not used: surprise2|\x22test/b\x22 imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 762 bytes
    - Viewed (0)
  10. test/import4.dir/import4.go

    // Verify that various kinds of "imported and not used"
    // errors are caught by the compiler.
    // Does not compile.
    
    package main
    
    // standard
    import "fmt"	// ERROR "imported and not used.*fmt|\x22fmt\x22 imported and not used"
    
    // renamed
    import X "math"	// ERROR "imported and not used.*math|\x22math\x22 imported as X and not used"
    
    // import dot
    import . "bufio"	// ERROR "imported and not used.*bufio|imported and not used"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 877 bytes
    - Viewed (0)
Back to top