Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 140 for x_name (0.31 sec)

  1. tests/update_test.go

    	if err := DB.Table("users").Where("1 = 1").Update("name", DB.Table("companies").Select("name").Where("companies.id = users.company_id")).Error; err != nil {
    		t.Errorf("failed to update with sub query, got error %v", err)
    	}
    
    	DB.First(&result, user.ID)
    	if result.Name != "new company name" {
    		t.Errorf("name should be %v, but got %v", user.Company.Name, result.Name)
    	}
    }
    
    func TestIdempotentSave(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    [[sec:variant-aware-matching]]
    == Variant attribute matching
    
    .About producer variants
    --
    The variant _name_ is mostly for debugging purposes and error messages.
    The name does not participate variant matching--only its attributes do.
    --
    
    There are no restrictions on the number of variants a component can define.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    }
    
    // find looks up the loader symbol for the DWARF DIE generated for the
    // type with the specified name.
    func (d *dwctxt) find(name string) loader.Sym {
    	return d.tmap[name]
    }
    
    func (d *dwctxt) mustFind(name string) loader.Sym {
    	r := d.find(name)
    	if r == 0 {
    		Exitf("dwarf find: cannot find %s", name)
    	}
    	return r
    }
    
    func (d *dwctxt) adddwarfref(sb *loader.SymbolBuilder, t loader.Sym, size int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      auto _name = _o->name.empty() ? 0 : _fbb.CreateString(_o->name);
      return tflite::CreateSubGraph(
          _fbb,
          _tensors,
          _inputs,
          _outputs,
          _operators,
          _name);
    }
    
    inline BufferT *Buffer::UnPack(const ::flatbuffers::resolver_function_t *_resolver) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    $.Values) }} manifests/charts/gateway/templates/_helpers.tpl {{- define "gateway.name" -}} {{- if eq .Release.Name "RELEASE-NAME" -}} {{- .Values.name | default "istio-ingressgateway" -}} {{- else -}} {{- .Values.name | default .Release.Name | default "istio-ingressgateway" -}} {{- end -}} {{- end }} {{/* Create chart name and version as used by the chart label. */}} {{- define "gateway.chart" -}} {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} {{- end }}...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - `group`, the group of the artifact to trust
    - `name`, the name of the artifact to trust
    - `version`, the version of the artifact to trust
    - `file`, the name of the artifact _file_ to trust
    - `regex`, a boolean saying if the `group`, `name`, `version` and `file` attributes need to be interpreted as regular expressions (defaults to `false`)
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    			t.Errorf("%s: output subject common name and template subject common name don't match", test.name)
    		} else if len(out.Subject.Organization) != len(template.Subject.Organization) {
    			t.Errorf("%s: output subject organisation and template subject organisation don't match", test.name)
    		} else if len(out.DNSNames) != len(template.DNSNames) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context_test.go

    				{Name: "alias", ExternalName: "concrete"},
    			},
    			output: []service{
    				{Name: "concrete", Aliases: host.Names{"alias"}},
    				{Name: "alias", ExternalName: "concrete"},
    			},
    		},
    		{
    			name: "multiple alias",
    			input: []service{
    				{Name: "concrete"},
    				{Name: "alias1", ExternalName: "concrete"},
    				{Name: "alias2", ExternalName: "concrete"},
    			},
    			output: []service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    		logger.V(4).Info("ReclaimVolume: policy is Retain, nothing to do", "volumeName", volume.Name)
    
    	case v1.PersistentVolumeReclaimRecycle:
    		logger.V(4).Info("ReclaimVolume: policy is Recycle", "volumeName", volume.Name)
    		opName := fmt.Sprintf("recycle-%s[%s]", volume.Name, string(volume.UID))
    		ctrl.scheduleOperation(logger, opName, func() error {
    			ctrl.recycleVolumeOperation(ctx, volume)
    			return nil
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    			Name:        name,
    			Namespace:   namespace,
    			Annotations: annotations,
    		},
    		Spec: spec,
    	}
    }
    
    func testVolumeClaimStorageClassInSpec(name, namespace, scName string, spec core.PersistentVolumeClaimSpec) *core.PersistentVolumeClaim {
    	spec.StorageClassName = &scName
    	return &core.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			Namespace: namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top