Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 656 for effort (0.37 sec)

  1. 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)
  2. buildscripts/disable-root.sh

    minio server --address 127.0.0.1:9004 "http://127.0.0.1:9003/tmp/multisiteb/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9004/tmp/multisiteb/data/disterasure/xl{5...8}" >/tmp/siteb_2.log 2>&1 &
    
    export MC_HOST_sitea=http://minioadmin:minioadmin@127.0.0.1:9001
    export MC_HOST_siteb=http://minioadmin:minioadmin@127.0.0.1:9004
    
    ./mc ready sitea
    ./mc ready siteb
    
    ./mc admin replicate add sitea siteb
    
    ./mc admin user add sitea foobar foo12345
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. 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)
  4. .github/workflows/run-mint.sh

    #!/bin/bash
    
    set -ex
    
    export MODE="$1"
    export ACCESS_KEY="$2"
    export SECRET_KEY="$3"
    export JOB_NAME="$4"
    export MINT_MODE="full"
    
    docker system prune -f || true
    docker volume prune -f || true
    docker volume rm $(docker volume ls -f dangling=true) || true
    
    ## change working directory
    cd .github/workflows/mint
    
    docker-compose -f minio-${MODE}.yaml up -d
    sleep 1m
    
    docker system prune -f || true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/gcimporter.go

    	case "$$\n":
    		err = fmt.Errorf("import %q: old textual export format no longer supported (recompile library)", path)
    
    	case "$$B\n":
    		var exportFormat byte
    		if exportFormat, err = buf.ReadByte(); err != nil {
    			return
    		}
    		size--
    
    		// The unified export format starts with a 'u'; the indexed export
    		// format starts with an 'i'; and the older binary export format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. cluster/gce/upgrade-aliases.sh

    echo "Changing K8s master envs and restarting..."
    export KUBE_GCE_IP_ALIAS_SUBNETWORK=${IP_ALIAS_SUBNETWORK}
    export KUBE_GCE_NODE_IPAM_MODE="IPAMFromCluster"
    export KUBE_GCE_ENABLE_IP_ALIASES=true
    export SECONDARY_RANGE_NAME="pods-default"
    export STORAGE_BACKEND="etcd3"
    export STORAGE_MEDIA_TYPE="application/vnd.kubernetes.protobuf"
    export ETCD_IMAGE=3.5.14-0
    export ETCD_VERSION=3.5.14
    
    # Upgrade master with updated kube envs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. 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)
  8. docs/bucket/replication/setup_2site_existing_replication.sh

    	pkill -9 minio
    	rm -rf /tmp/multisitea
    	rm -rf /tmp/multisiteb
    	rm -rf /tmp/data
    }
    
    catch
    
    set -e
    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=
    unset MINIO_KMS_KES_CERT_FILE
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. 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)
  10. docs/bucket/replication/setup_3site_replication.sh

    	rm -rf /tmp/multisitea
    	rm -rf /tmp/multisiteb
    	rm -rf /tmp/multisitec
    }
    
    catch
    
    set -e
    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=
    unset MINIO_KMS_KES_CERT_FILE
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top