Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 313 for effort (0.15 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    		},
    		{
    			name: "A pod which can't be scheduled on a dedicated node assigned to user2 with effect NoSchedule",
    			pod:  podWithTolerations("pod1", []v1.Toleration{{Key: "dedicated", Operator: "Equal", Value: "user2", Effect: "NoSchedule"}}),
    			node: nodeWithTaints("nodeA", []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. cmd/endpoint-ellipses_test.go

    	}{
    		// Invalid inputs.
    		{
    			[]string{"data{1...17}/export{1...52}"},
    			[]uint64{14144},
    			nil,
    			false,
    		},
    		// Valid inputs.
    		{
    			[]string{"data{1...3}"},
    			[]uint64{3},
    			[][]uint64{{3}},
    			true,
    		},
    		{
    			[]string{"data/controller1/export{1...2}, data/controller2/export{1...4}, data/controller3/export{1...8}"},
    			[]uint64{2, 4, 8},
    			[][]uint64{{2}, {2, 2}, {2, 2, 2, 2}},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/go/ast/filter.go

    	case *ArrayType:
    		return filterType(t.Elt, f, export)
    	case *StructType:
    		if filterFieldList(t.Fields, f, export) {
    			t.Incomplete = true
    		}
    		return len(t.Fields.List) > 0
    	case *FuncType:
    		b1 := filterParamList(t.Params, f, export)
    		b2 := filterParamList(t.Results, f, export)
    		return b1 || b2
    	case *InterfaceType:
    		if filterFieldList(t.Methods, f, export) {
    			t.Incomplete = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/abi.go

    		}
    	}
    }
    
    // GenABIWrappers applies ABI information to Funcs and generates ABI
    // wrapper functions where necessary.
    func (s *SymABIs) GenABIWrappers() {
    	// For cgo exported symbols, we tell the linker to export the
    	// definition ABI to C. That also means that we don't want to
    	// create ABI wrappers even if there's a linkname.
    	//
    	// TODO(austin): Maybe we want to create the ABI wrappers, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. pkg/controller/controller_utils_test.go

    								{Key: "key3", Value: "value3", Effect: "NoSchedule"},
    								{Key: "key4", Value: "value4", Effect: "NoExecute"},
    							},
    						},
    					},
    				},
    				Clientset: fake.NewSimpleClientset(&v1.PodList{Items: []v1.Pod{*testutil.NewPod("pod0", "node0")}}),
    			},
    			nodeName: "node1",
    			taintsToRemove: []*v1.Taint{
    				{Key: "key2", Value: "value2", Effect: "NoExecute"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. docs/site-replication/run-multi-site-ldap.sh

    unset MINIO_KMS_KES_KEY_NAME
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    export MINIO_KMS_AUTO_ENCRYPTION=off
    export MINIO_PROMETHEUS_AUTH_TYPE=public
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    export MINIO_IDENTITY_LDAP_SERVER_ADDR="localhost:389"
    export MINIO_IDENTITY_LDAP_SERVER_INSECURE="on"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      mlir::SideEffects::Effect* effect = effect_instance.getEffect();
      SideEffects side_effects;
      if (isa<MemoryEffects::Allocate>(effect)) {
        side_effects.SetAlloc();
      } else if (isa<MemoryEffects::Free>(effect)) {
        side_effects.SetFree();
      } else if (isa<MemoryEffects::Read>(effect)) {
        side_effects.SetRead();
      } else if (isa<MemoryEffects::Write>(effect)) {
        side_effects.SetWrite();
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

        if (recompute_analysis_for_funcs.contains(while_body)) {
          // TODO(b/202540801): Recomputing side effect analysis for the entire
          // module is wasteful. It would be better to just recompute analysis for
          // specific functions but the current side effect analysis interface
          // does not allow that.
          side_effect_analysis = TF::SideEffectAnalysis(module);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. docs/logging/README.md

    ```
    export MINIO_AUDIT_WEBHOOK_ENABLE_target1="on"
    export MINIO_AUDIT_WEBHOOK_AUTH_TOKEN_target1="token"
    export MINIO_AUDIT_WEBHOOK_ENDPOINT_target1=http://localhost:8080/minio/logs
    export MINIO_AUDIT_WEBHOOK_CLIENT_CERT="/tmp/cert.pem"
    export MINIO_AUDIT_WEBHOOK_CLIENT_KEY=="/tmp/key.pem"
    minio server /mnt/data
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/gcimporter_test.go

    			continue
    		}
    
    		// create file with corrupted export data
    		// 1) read file
    		data, err := os.ReadFile(filepath.Join(dir, name))
    		if err != nil {
    			t.Fatal(err)
    		}
    		// 2) find export data
    		i := bytes.Index(data, []byte("\n$$B\n")) + 5
    		j := bytes.Index(data[i:], []byte("\n$$\n")) + i
    		if i < 0 || j < 0 || i > j {
    			t.Fatalf("export data section not found (i = %d, j = %d)", i, j)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top