Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,573 for info2 (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/cache_test.go

    type dataString string
    
    func (d dataString) AuthenticatedData() []byte { return []byte(d) }
    
    func Test_simpleCache(t *testing.T) {
    	info1 := []byte{1}
    	info2 := []byte{2}
    	key1 := dataString("1")
    	key2 := dataString("2")
    	twi1 := &transformerWithInfo{info: info1}
    	twi2 := &transformerWithInfo{info: info2}
    
    	tests := []struct {
    		name string
    		test func(*testing.T, *simpleCache, *clocktesting.FakeClock)
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            def metadata = ivyMetadata()
            def id1 = new NamespaceId('namespace', 'info1')
            def id2 = new NamespaceId('namespace', 'info2')
            def extraAttrs = [:]
            extraAttrs[id1] = "info1 value"
            extraAttrs[id2] = "info2 value"
            metadata.extraAttributes = extraAttrs
            metadata.branch = "someBranch"
    
            def capturedDescriptor = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationKotlinDslIntegTest.groovy

                                    homepage.set("http://www.example.com/library")
                                }
                                extraInfo("http://my.extra.info1", "foo", "fooValue")
                                extraInfo("http://my.extra.info2", "bar", "barValue")
                            }
                        }
                    }
                }
            """
    
            when:
            succeeds 'publish'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

            BuildDisplayInfo info1 = buildDisplayInfo('build1')
            CrossBuildPerformanceResults result1  = crossBuildResults(startTime: 100)
            result1.buildResult(info1).addAll(measuredOperations([1]))
    
            BuildDisplayInfo info2 = buildDisplayInfo('build2')
            CrossBuildPerformanceResults result2  = crossBuildResults(startTime: 200)
            result1.buildResult(info2).addAll(measuredOperations([2]))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationIntegTest.groovy

                                }
                                extraInfo 'http://my.extra.info1', 'foo', 'fooValue'
                                extraInfo 'http://my.extra.info2', 'bar', 'barValue'
                                withXml {
                                    asNode().info[0].@resolver = 'test'
                                }
                            }
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishValidationIntegTest.groovy

                            descriptor.status = '${sq(status)}'
                            descriptor.extraInfo 'http://my.extra.info1', 'foo', '${sq(extraValue)}'
                            descriptor.extraInfo 'http://my.extra.info2', 'bar', '${sq(extraValue)}'
                            descriptor.withXml {
                                asNode().info[0].@resolver = '${sq(resolver)}'
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. src/testing/fstest/testfs.go

    func formatInfoEntry(info fs.FileInfo) string {
    	return fmt.Sprintf("%s IsDir=%v Type=%v", info.Name(), info.IsDir(), info.Mode().Type())
    }
    
    // formatInfo formats an fs.FileInfo into a string for error messages and comparison.
    func formatInfo(info fs.FileInfo) string {
    	return fmt.Sprintf("%s IsDir=%v Mode=%v Size=%d ModTime=%v", info.Name(), info.IsDir(), info.Mode(), info.Size(), info.ModTime())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cfg/cfg.go

    }
    
    // isSameDir reports whether dir1 and dir2 are the same directory.
    func isSameDir(dir1, dir2 string) bool {
    	if dir1 == dir2 {
    		return true
    	}
    	info1, err1 := os.Stat(dir1)
    	info2, err2 := os.Stat(dir2)
    	return err1 == nil && err2 == nil && os.SameFile(info1, info2)
    }
    
    // isGOROOT reports whether path looks like a GOROOT.
    //
    // It does this by looking for the path/pkg/tool directory,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    	list, _ := os.ReadDir(dir)
    	for _, info := range list {
    		if info.Type().IsRegular() && strings.HasSuffix(info.Name(), ".go") {
    			if com := findImportComment(filepath.Join(dir, info.Name())); com != "" {
    				return com, nil
    			}
    		}
    	}
    	for _, info1 := range list {
    		if info1.IsDir() {
    			files, _ := os.ReadDir(filepath.Join(dir, info1.Name()))
    			for _, info2 := range files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl

    	} ShareInfoCtr502;
    
    	typedef [switch_type(int)] union {
    		[case(0)] ShareInfo0 *info0;
    		[case(1)] ShareInfo1 *info1;
    		[case(502)] ShareInfo502 *info1;
    	} ShareInfo;
    
    	typedef [switch_type(int)] union {
    		[case(0)] ShareInfoCtr0 *info0;
    		[case(1)] ShareInfoCtr1 *info1;
    		[case(502)] ShareInfoCtr502 *info1;
    	} ShareCtr;
    
    	[op(0x0f)]
    	int ShareEnumAll([in,string,unique] wchar_t *servername,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top