Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for JOIN (0.07 sec)

  1. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&NonResourceAttributes{`,
    		`Path:` + fmt.Sprintf("%v", this.Path) + `,`,
    		`Verb:` + fmt.Sprintf("%v", this.Verb) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *NonResourceRule) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&NonResourceRule{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&NonResourceAttributes{`,
    		`Path:` + fmt.Sprintf("%v", this.Path) + `,`,
    		`Verb:` + fmt.Sprintf("%v", this.Verb) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *NonResourceRule) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&NonResourceRule{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 100.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2beta1/generated.pb.go

    	return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63))))
    }
    func (this *ContainerResourceMetricSource) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&ContainerResourceMetricSource{`,
    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`TargetAverageUtilization:` + valueToStringGenerated(this.TargetAverageUtilization) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
    
        # Find the both quantized and unquantized dump file.
        folder = os.path.join(log_dir_path, os.listdir(log_dir_path)[0])
        unquantized_dump_file_path = os.path.join(
            log_dir_path, folder, 'unquantized_tensor_data.pb'
        )
        quantized_dump_file_path = os.path.join(
            log_dir_path, folder, 'quantized_tensor_data.pb'
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/generated.pb.go

    	repeatedStringForItems += "}"
    	s := strings.Join([]string{`&CronJobList{`,
    		`ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`,
    		`Items:` + repeatedStringForItems + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *CronJobSpec) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&CronJobSpec{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    			chainStr += " -> "
    		}
    		chainStr += nameToKey(&cert.Subject)
    	}
    	return chainStr
    }
    
    func nameToKey(name *pkix.Name) string {
    	return strings.Join(name.Country, ",") + "/" + strings.Join(name.Organization, ",") + "/" + strings.Join(name.OrganizationalUnit, ",") + "/" + name.CommonName
    }
    
    const gtsIntermediate = `-----BEGIN CERTIFICATE-----
    MIIFljCCA36gAwIBAgINAgO8U1lrNMcY9QFQZjANBgkqhkiG9w0BAQsFADBHMQsw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		{name: "string lists",
    			obj:    objs([]interface{}{"a", "b", "c"}),
    			schema: schemas(listType(&stringType)),
    			valid: []string{
    				// Join function
    				"self.val1.join('-') == 'a-b-c'",
    				"['a', 'b', 'c'].join('-') == 'a-b-c'",
    				"self.val1.join() == 'abc'",
    				"['a', 'b', 'c'].join() == 'abc'",
    			},
    		},
    		{name: "listSets",
    			obj:    objs([]interface{}{"a", "b", "c"}, []interface{}{"a", "c", "b"}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    			return "", err
    		}
    		ips := make([]string, 0, len(hostIPs))
    		for _, ip := range hostIPs {
    			ips = append(ips, ip.String())
    		}
    		return strings.Join(ips, ","), nil
    	case "status.podIP":
    		return podIP, nil
    	case "status.podIPs":
    		return strings.Join(podIPs, ","), nil
    	}
    	return fieldpath.ExtractFieldPathAsString(pod, internalFieldPath)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	verifyGCBits(t, ArrayOf(2, ArrayOf(10000, Tptrscalar)), rep(2*10000, lit(1, 0)))
    	verifyGCBits(t, TypeOf([4]Xbigptrscalar{}), join(rep(3, join(rep(100, lit(1)), rep(100, lit(0)))), rep(100, lit(1))))
    	verifyGCBits(t, ArrayOf(4, Tbigptrscalar), join(rep(3, join(rep(100, lit(1)), rep(100, lit(0)))), rep(100, lit(1))))
    
    	verifyGCBitsSlice(t, TypeOf([]Xptr{}), 0, empty)
    	verifyGCBitsSlice(t, SliceOf(Tptr), 0, empty)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top