Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for RAW (0.07 sec)

  1. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.GradleBuild.getBuildName()> does not have raw return type assignable to org.gradle.api.provider.Property in (GradleBuild.java:0)
    Method <org.gradle.api.tasks.GradleBuild.getDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (GradleBuild.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    }
    
    func parseCertificateRequest(in *certificateRequest) (*CertificateRequest, error) {
    	out := &CertificateRequest{
    		Raw:                      in.Raw,
    		RawTBSCertificateRequest: in.TBSCSR.Raw,
    		RawSubjectPublicKeyInfo:  in.TBSCSR.PublicKey.Raw,
    		RawSubject:               in.TBSCSR.Subject.FullBytes,
    
    		Signature:          in.SignatureValue.RightAlign(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		return nil, 0, EINVAL
    	}
    	sa.raw.Len = SizeofSockaddrInet6
    	sa.raw.Family = AF_INET6
    	p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
    	p[0] = byte(sa.Port >> 8)
    	p[1] = byte(sa.Port)
    	sa.raw.Scope_id = sa.ZoneId
    	for i := 0; i < len(sa.Addr); i++ {
    		sa.raw.Addr[i] = sa.Addr[i]
    	}
    	return unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      </record>
      tag ${if record['stream'] == 'stderr' then 'raw.stderr' else 'raw.stdout' end}
      remove_keys stream,log
    </match>
    # TODO: detect exceptions and forward them as one log entry using the
    # detect_exceptions plugin
    # This section is exclusive for k8s_container logs. These logs come with
    # 'raw.stderr' or 'raw.stdout' tags.
    <match {raw.stderr,raw.stdout}>
      @type google_cloud
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    				base.Errorf("go: %s: arguments must be package or module paths", q.raw)
    				continue
    			}
    			if fi, err := os.Stat(q.raw); err == nil && !fi.IsDir() {
    				base.Errorf("go: %s exists as a file, but 'go get' requires package arguments", q.raw)
    				continue
    			}
    		}
    
    		queries = append(queries, q)
    	}
    
    	return dropToolchain, queries
    }
    
    type resolver struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/validation/validation_test.go

    							AverageUtilization: utilpointer.Int32(70),
    							AverageValue:       resource.NewMilliQuantity(300, resource.DecimalSI),
    						},
    					},
    				}},
    			},
    		},
    		msg: "may not set both a target raw value and a target utilization",
    	}, {
    		horizontalPodAutoscaler: autoscaling.HorizontalPodAutoscaler{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "myautoscaler",
    				Namespace: metav1.NamespaceDefault,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    	}
    	if nulls.PStruct != nil {
    		t.Errorf("Unmarshal of null did not clear nulls.PStruct")
    	}
    
    	if string(nulls.Raw) != "null" {
    		t.Errorf("Unmarshal of RawMessage null did not record null: %v", string(nulls.Raw))
    	}
    	if nulls.Time.String() != before {
    		t.Errorf("Unmarshal of time.Time null set time to %v", nulls.Time.String())
    	}
    	if nulls.BigInt.String() != "123" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

    /**
     */
    @Named
    @Singleton
    public class DefaultModelBuilder implements ModelBuilder {
    
        public static final String NAMESPACE_PREFIX = "http://maven.apache.org/POM/";
        private static final String RAW = "raw";
        private static final String FILE = "file";
        private static final String IMPORT = "import";
    
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. tests/query_test.go

    		{Name: "subquery_raw_4", Age: 40},
    	}
    	DB.Create(&users)
    
    	var count int64
    	err := DB.Raw("select count(*) from (?) tmp where 1 = ? AND name IN (?)", DB.Raw("select name from users where age >= ? and name in (?)", 10, []string{"subquery_raw_1", "subquery_raw_2", "subquery_raw_3"}), 1, DB.Raw("select name from users where age >= ? and name in (?)", 20, []string{"subquery_raw_1", "subquery_raw_2", "subquery_raw_3"})).Scan(&count).Error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    		Metadata: &model.NodeMetadata{
    			IstioVersion: "1.2.2",
    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    		},
    	}
    
    	gatewayProxy := &model.Proxy{
    		Type:            model.Router,
    		ConfigNamespace: "not-default",
    		Metadata: &model.NodeMetadata{
    			IstioVersion: "1.2.2",
    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top