Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,230 for unreadable (0.18 sec)

  1. src/cmd/go/go_test.go

    	filepath.WalkDir(dir, func(path string, info fs.DirEntry, err error) error {
    		// chmod not only directories, but also things that we couldn't even stat
    		// due to permission errors: they may also be unreadable directories.
    		if err != nil || info.IsDir() {
    			os.Chmod(path, 0777)
    		}
    		return nil
    	})
    	return robustio.RemoveAll(dir)
    }
    
    func TestNewReleaseRebuildsStalePackagesInGOPATH(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        assertFailsWith<IllegalStateException> {
          response.priorResponse?.body?.string()
        }.also { expected ->
          assertThat(expected.message!!).contains("Unreadable ResponseBody!")
        }
      }
    
      private fun makeFailingCall() {
        val requestBody: RequestBody =
          object : RequestBody() {
            override fun contentType() = null
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. docs/metrics/healthcheck/README.md

    ## Liveness probe
    
    This probe always responds with '200 OK'. Only fails if 'etcd' is configured and unreachable. When liveness probe fails, Kubernetes like platforms restart the container.
    
    ```
    livenessProbe:
      httpGet:
        path: /minio/health/live
        port: 9000
        scheme: HTTP
      initialDelaySeconds: 120
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/vet/doc.go

    	timeformat       check for calls of (time.Time).Format or time.Parse with 2006-02-01
    	unmarshal        report passing non-pointer or non-interface values to unmarshal
    	unreachable      check for unreachable code
    	unsafeptr        check for invalid conversions of uintptr to unsafe.Pointer
    	unusedresult     check for unused results of calls to some functions
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategyTest.groovy

        @Rule TestNameTestDirectoryProvider tempDir = new TestNameTestDirectoryProvider(getClass())
        File daemonDir = tempDir.createDir("test_daemon_dir")
    
        def "daemon should expire when registry file is unreachable"() {
            given:
            DaemonRegistryUnavailableExpirationStrategy expirationStrategy = new DaemonRegistryUnavailableExpirationStrategy(daemon)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

        public void setField(final Field field) {
            this.field = field;
            if (field != null && ModifierUtil.isPublic(field)) {
                readable = true;
                writable = true;
            }
        }
    
        @Override
        public boolean isReadable() {
            return readable;
        }
    
        @Override
        public boolean isWritable() {
            return writable;
        }
    
        @Override
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unreachable/doc.go

    // Package unreachable defines an Analyzer that checks for unreachable code.
    //
    // # Analyzer unreachable
    //
    // unreachable: check for unreachable code
    //
    // The unreachable analyzer finds statements that execution can never reach
    // because they are preceded by an return statement, a call to panic, an
    // infinite loop, or similar constructs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 525 bytes
    - Viewed (0)
  8. test/chan/select8.go

    		}
    	}()
    
    	select {
    	case <-ch:
    		break
    		panic("unreachable")
    	}
    
    	select {
    	default:
    		break
    		panic("unreachable")
    	}
    
    	select {
    	case <-ch:
    		break
    		panic("unreachable")
    	default:
    		break
    		panic("unreachable")
    	}
    
    	select {
    	case <-ch:
    		break
    		panic("unreachable")
    	case ch <- 10:
    		panic("unreachable")
    	default:
    		break
    		panic("unreachable")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 10 18:02:11 UTC 2019
    - 826 bytes
    - Viewed (0)
  9. test/chan/select3.go

    	testBlock(always, func() {
    		select {
    		case <-nilch:
    			unreachable()
    		}
    	})
    	testBlock(always, func() {
    		select {
    		case nilch <- 7:
    			unreachable()
    		}
    	})
    	testBlock(always, func() {
    		select {
    		case <-nilch:
    			unreachable()
    		case nilch <- 7:
    			unreachable()
    		}
    	})
    
    	// selects with non-ready non-nil channels always block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 08 02:10:12 UTC 2017
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/vet_flags.txt

    stderr '[/\\]vet'$GOEXE'["]? -unsafeptr=false -unreachable=false ["]?\$WORK[/\\][^ ]*[/\\]vet\.cfg'
    
    go test -n -vet= -run=none encoding/binary
    stderr '[/\\]vet'$GOEXE'["]? -unsafeptr=false -unreachable=false ["]?\$WORK[/\\][^ ]*[/\\]vet\.cfg'
    
    # Both should allow users to override via the -vet flag.
    go test -n -vet=unreachable -run=none .
    stderr '[/\\]vet'$GOEXE'["]? -unreachable ["]?\$WORK[/\\][^ ]*[/\\]vet\.cfg'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top