Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for context0 (0.2 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

            auth = context.auth;
    
    
            if( context.share != null ) {
                this.tree = context.tree;
                this.dfsReferral = context.dfsReferral;
            }
            int last = name.length() - 1;
            if( name.charAt( last ) == '/' ) {
                name = name.substring( 0, last );
            }
            if( context.share == null ) {
                this.unc = "\\";
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      else
        TF_RETURN_IF_ERROR(
            ::tensorflow::ConvertDataType(dtype, builder, &element_type));
    
      return ConvertElementTypeAndShape(element_type, handle, context, builder);
    }
    
    absl::StatusOr<TensorType> ImporterBase::ConvertElementTypeAndShape(
        mlir::Type element_type, const shape_inference::ShapeHandle& handle,
        shape_inference::InferenceContext* context, mlir::Builder builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    clusters:
    - name: local
      cluster:
        server: https://${apiserver_address}
        certificate-authority: ${CA_CERT_BUNDLE_PATH}
    contexts:
    - context:
        cluster: local
        user: kubelet
      name: service-account-context
    current-context: service-account-context
    EOF
      elif [[ "${FETCH_BOOTSTRAP_KUBECONFIG:-false}" == "true" ]]; then
        echo "Fetching kubelet bootstrap-kubeconfig file from metadata"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework_test.go

    }
    
    func (pl *TestPlugin) Unreserve(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName string) {
    }
    
    func (pl *TestPlugin) PreBind(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName string) *framework.Status {
    	return framework.NewStatus(framework.Code(pl.inj.PreBindStatus), injectReason)
    }
    
    func (pl *TestPlugin) PostBind(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	return nil
    }
    func (t *testRESTStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    func (t *testRESTStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	return nil
    }
    func (t *testRESTStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	// that must be called when the operation completes.
    	grabConn(context.Context) (*driverConn, releaseConn, error)
    
    	// txCtx returns the transaction context if available.
    	// The returned context should be selected on along with
    	// any query context when awaiting a cancel.
    	txCtx() context.Context
    }
    
    var (
    	_ stmtConnGrabber = &Tx{}
    	_ stmtConnGrabber = &Conn{}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    		})
    	}
    	return stats
    }
    
    func targetStatus(ctx context.Context, h logger.Target) madmin.Status {
    	if h.IsOnline(ctx) {
    		return madmin.Status{Status: string(madmin.ItemOnline)}
    	}
    	return madmin.Status{Status: string(madmin.ItemOffline)}
    }
    
    // fetchLoggerDetails return log info
    func fetchLoggerInfo(ctx context.Context) ([]madmin.Logger, []madmin.Audit) {
    	var loggerInfo []madmin.Logger
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    // this node returns a 404
    func proxyHeadToReplicationTarget(ctx context.Context, bucket, object string, rs *HTTPRangeSpec, opts ObjectOptions, proxyTargets *madmin.BucketTargets) (oi ObjectInfo, proxy proxyResult) {
    	_, oi, proxy = proxyHeadToRepTarget(ctx, bucket, object, rs, opts, proxyTargets)
    	return oi, proxy
    }
    
    func scheduleReplication(ctx context.Context, oi ObjectInfo, o ObjectLayer, dsc ReplicateDecision, opType replication.Type) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    		}
    		if index == 2 && err != context.Canceled {
    			t.Fatalf("Scan: %v; want context.Canceled", err)
    		}
    		got = append(got, r)
    		index++
    	}
    	select {
    	case <-ctx.Done():
    		if err := ctx.Err(); err != context.Canceled {
    			t.Fatalf("context err = %v; want context.Canceled", err)
    		}
    	default:
    		t.Fatalf("context err = nil; want context.Canceled")
    	}
    	want := []row{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    func newFalseMapPlugin() frameworkruntime.PluginFactory {
    	return func(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    		return &falseMapPlugin{}, nil
    	}
    }
    
    func (pl *falseMapPlugin) Name() string {
    	return "FalseMap"
    }
    
    func (pl *falseMapPlugin) Score(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ string) (int64, *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top